ryudice
ryudice

Reputation: 37366

Cannot access local method variable in pry

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

Answers (1)

Gavin Miller
Gavin Miller

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

Related Questions