I\'m using Pry with my Rails application. I set binding.pry inside a loop in my model to try and debug a problem. For example:
binding.pry
(1..100).each do
I use:
disable-pry
This will keep the program running, but will keep it from continuing to stop execution. This is especially helpful when you are debugging in the console.