def login
debugger
LOGIN::authenticate(params)
end
When it hits the line with debugger, I type ‘n’ and it goes to some other file, and I can’t seem to be able to get into the call to LOGIN::authenticate
Is ‘n’ not the right way to do this?
You’ll want to use
steporsfor shorthand. Here is a great cheat-sheet on ruby-debug as well.