I am trying to skip the password for Users in Authlogic..
Thanks to SO, I found a solution for creating users
User
acts_as_authentic do |c|
c.validate_password_field = false
c.validate_email_field = false
end
The User_session is still giving a problem - any time I try to log in I get "password cannot be blank"..
how to bypass validation on user session?