up vote 3 down vote favorite
1
share [g+] share [fb]

Does Ruby have a stepwise debugger, similar to Perl's "perl -d"?

link|improve this question

14% accept rate
feedback

2 Answers

Check out the ruby-debug gem and the rdebug command. Here is a random blog article about ruby-debug to get you started.

link|improve this answer
feedback

From the command line (if you have the debug module available):

ruby -r debug /path/to/ruby_script.rb
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.