While running an app how do you select a user by email address and then set the password manually within rails console for Devise?
rails console
Also, where would I go to
# $ rails console production u=User.where(:email => 'usermail@gmail.com').first u.password='userpassword' u.password_confirmation='userpassword' u.save!