Does ruby have a stepwise debugger, similar to perl's "perl -d"?
+6
A:
Check out the ruby-debug gem and the rdebug command. Here is a random blog article about ruby-debug to get you started.
jcoby
2008-11-03 18:03:00
A:
From the command line (if you have the debug
module available):
ruby -r debug /path/to/ruby_script.rb
Kevin
2009-08-28 03:10:28