Question

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?

Was it helpful?

Solution

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.)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top