I am using Authlogic gem for the the authentication purpose, also I am using omniauth gem so the users from facebook,twitter are also can be able login to my application, for this I want to create user with blank password in m y application.
Currently I have implemented this by creating a method in user model(which evaluate the request params, where the params are stored in Thread.current) to skip the validation whenever the user is from facebook/twitter based on the omniauth response, this is working only on my local machine not on heroku. Is their any other way to achieve this?
