Reputation: 37366
I have the following method:
def update
loan = Loan.find(params[:id])
pry
respond_with loan.update(loan_params)
end
So I would expect that when I get to pry in the console I should be able to type loan and get the object but instead I get "undefined local variable or method 'loan'", am I doing something wrong?
Upvotes: 6
Views: 2705
Reputation: 43815
You'll need to use binding.pry
which will load pry in the scope of your current object (I think pry
just loads a pry session without the scope.)
Upvotes: 13