Say I have a loop in my code that calls the rails debugger a few times
def show
animals = [\'dog\', \'cat\', \'owl\', \'tiger\']
for animal in animals
You can always comment out the debugger
call from your code then type reload
in your debug session. Then just cont
once and the request will continue without triggering a debug session.
Because you're in development mode, you can just add the debugger
call back in later and it will trigger correctly.