Open postmodern opened 12 years ago
I am a big fan of ruby-debug -- what are the tradeoffs between it and the builtin?
Currently ruby-debug will not compile against MRI 1.9.x, so one has to install the newer debugger gem. Both debugger and the built-in debugger have roughly the same set of commands. The built-in debugger is guaranteed to work on MRI and JRuby; Rubinius has it's own debugger.
Perhaps I should just send you a pull request. :)
The ruby-debug
I'm requiring there is from the debugger gem (@cldwalker's fork of ruby-debug
), so it will compile against YARV. I would like to add JRuby and Rubinius support, so thanks for your PR. What do we lose by not using ruby-debug?
Nothing apparently? Compare debugger
with debug
.
I noticed that letters require
ruby-debug
and callsdebugger
. You can use Ruby's builtin debugger: