Does ruby have a stepwise debugger, similar to perl's "perl -d"? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T06:22:16Z http://stackoverflow.com/feeds/question/259416 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/259416/does-ruby-have-a-stepwise-debugger-similar-to-perls-perl-d 3 Does ruby have a stepwise debugger, similar to perl's "perl -d"? someguy 2008-11-03T17:52:52Z 2009-08-28T03:10:28Z <p>Does ruby have a stepwise debugger, similar to perl's "perl -d"?</p> http://stackoverflow.com/questions/259416/does-ruby-have-a-stepwise-debugger-similar-to-perls-perl-d/259437#259437 6 Answer by jcoby for Does ruby have a stepwise debugger, similar to perl's "perl -d"? jcoby 2008-11-03T18:03:00Z 2008-11-03T18:03:00Z <p>Check out the <a href="http://rubyforge.org/projects/ruby-debug/" rel="nofollow">ruby-debug gem</a> and the rdebug command. Here is a <a href="http://www.datanoise.com/articles/2006/7/12/tutorial-on-ruby-debug" rel="nofollow">random blog article about ruby-debug</a> to get you started.</p> http://stackoverflow.com/questions/259416/does-ruby-have-a-stepwise-debugger-similar-to-perls-perl-d/1344838#1344838 0 Answer by Kevin for Does ruby have a stepwise debugger, similar to perl's "perl -d"? Kevin 2009-08-28T03:10:28Z 2009-08-28T03:10:28Z <p>From the command line (if you have the <code>debug</code> module available):</p> <pre><code>ruby -r debug /path/to/ruby_script.rb </code></pre>