0
Ruby Real time debugger
Dear all, Is there any real-time debugger for ruby i.e. I want to see how the code is running through the loops and condition on execution. As of now I had to put lot of puts statements to understand the flow.
4 Antworten
+ 1
you can also use the pry gem.
+ 1
Both byebug and pry are called REPL tools. Read, evaluate, print, loop.
0
You can use byebug gem
0
Hi thankyou for answering, I already know these gems .