Debuggers
A debugger permits the ability to understand what is going on inside a program while it executes
9.42
Byebug is a Ruby debugger. It's implemented using the
TracePoint C API for execution control and the Debug Inspector C API for
call stack navigation. The core component provides support that front-ends
can build on. It provides breakpoint handling and bindings for stack frames
am...
2018
2019
2020
2021
2022
2023
5.5
Combine 'pry' with 'byebug'. Adds 'step', 'next', 'finish',
'continue' and 'break' commands to control execution.
2018
2019
2020
2021
2022
2023
0.99
Debugging functionality for Ruby. This is completely rewritten debug.rb which was contained by the ancient Ruby versions.
2018
2019
2020
2021
2022
2023
0.5
debugger is a fast implementation of the standard Ruby debugger debug.rb.
It is implemented by utilizing a new Ruby C API hook. The core component
provides support that front-ends can build on. It provides breakpoint
handling, bindings for stack frames among other things.
2018
2019
2020
2021
2022
2023