I am using inline byebug
to stop the program execution and debug, from rails console or from a running rails server.
I have to debug a very repetitive loop, and I need to put a byebug in the middle of that loop.
After debugging, it seems my options are either to keep pressing c until I can get out of my loop, or abort the console execution execution with exit
or something similar. But then I need to reload the whole environment.
Is it possible to just tell byebug to skip next byebug
lines until the request (rails server) or until the command (rails console) finishes ?
` and that code might include manually setting a variable to true when rails server started successfully.
ā jeroenvisser101 May 05 '16 at 13:32