Does ruby have a stepwise debugger, similar to perl's "perl -d"? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T06:22:16Zhttp://stackoverflow.com/feeds/question/259416http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/259416/does-ruby-have-a-stepwise-debugger-similar-to-perls-perl-d3Does ruby have a stepwise debugger, similar to perl's "perl -d"?someguy2008-11-03T17:52:52Z2009-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#2594376Answer by jcoby for Does ruby have a stepwise debugger, similar to perl's "perl -d"?jcoby2008-11-03T18:03:00Z2008-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#13448380Answer by Kevin for Does ruby have a stepwise debugger, similar to perl's "perl -d"?Kevin2009-08-28T03:10:28Z2009-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>