Tagged Questions
1
vote
2answers
747 views
Ruby on Rails with Sorcery reset password email has a undefined method error
Using Sorcery 0.7.4 with Rails 3.1.1 for authentication.
Everything was going well until I tried to setup password resetting.
Activation works perfectly and emails are sent, but for some reason I get ...
1
vote
2answers
139 views
Why am I getting a No Method and Nil Object error in the following line of codes?
I am trying to implement the following code in index.html.erb on rails and the following error appears on the server:
NoMethodError in Users#index
You have a nil object when you didn't expect it!
You ...
0
votes
1answer
970 views
rails “NoMethodError in SessionsController#create ”. Apparently a nil object I don't expect, or so says the error
I am trying to sign in users with sessions. My controller has a method 'create' sessions:
def create
user = User.authenticate(params[:session][:email], params[:session][:password])
if ...