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?
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.)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With