How to incorporate Interactive Ruby into my development process? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T17:55:45Z http://stackoverflow.com/feeds/question/144046 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/144046/how-to-incorporate-interactive-ruby-into-my-development-process 4 How to incorporate Interactive Ruby into my development process? Mutewinter 2008-09-27T17:17:27Z 2009-02-23T05:20:47Z <p>I am trying to find a better way to integrate IRB with my normal ruby devleopment. Currently I rarely use IRB with my code. I only use it to verify syntax or to try something small. </p> <p>I know I can load my own code into ruby as a</p> <pre><code>require 'mycode' </code></pre> <p>but this usually doesn't mesh with my programming style. Sometimes the variables I want to examine are out of scope or inside of a loop. Is there an easy way to fire up my script and freeze at a certain point inside of IRB? I guess I'm looking for an easier way to debug my ruby code without breaking my F5(compile) key. </p> <p>Maybe a more experienced ruby developer can share with me a more streamlined method of development.</p> http://stackoverflow.com/questions/144046/how-to-incorporate-interactive-ruby-into-my-development-process/144074#144074 0 Answer by TonyLa for How to incorporate Interactive Ruby into my development process? TonyLa 2008-09-27T17:23:12Z 2008-09-27T17:23:12Z <p>I just use rdebug to debug any of my ruby or RoR code. </p> http://stackoverflow.com/questions/144046/how-to-incorporate-interactive-ruby-into-my-development-process/144080#144080 2 Answer by Cameron Booth for How to incorporate Interactive Ruby into my development process? Cameron Booth 2008-09-27T17:25:28Z 2008-09-27T17:25:28Z <p>I don't tend to use irb directly that frequently, as I tend to be inside rails and so use script/console a bunch, but I do like using the ruby debugger (Ruby Debug gem). It lets you set a breakpoint basically and then step through your code line by line. </p> <p>Here's a screencast about it that I haven't actually watched, but a quick search pulled it up, and it could be useful:</p> <p><a href="http://brian.maybeyoureinsane.net/blog/2007/05/07/ruby-debug-basics-screencast/" rel="nofollow">http://brian.maybeyoureinsane.net/blog/2007/05/07/ruby-debug-basics-screencast/</a></p> http://stackoverflow.com/questions/144046/how-to-incorporate-interactive-ruby-into-my-development-process/144325#144325 0 Answer by Atiaxi for How to incorporate Interactive Ruby into my development process? Atiaxi 2008-09-27T19:50:10Z 2008-09-28T19:48:54Z <p>If you're willing to use an IDE for debugging, I know <a href="http://www.eclipse.org/" rel="nofollow" title="Eclipse">Eclipse</a> (via the <a href="http://rubyeclipse.sourceforge.net/" rel="nofollow">Ruby Development Tools</a>) has a relatively straightforward interface. If you're doing rails then there's a specific build of eclipse called <a href="http://www.aptana.com/rails" rel="nofollow">RadRails</a> which may also help (though I haven't used it for debugging)</p> http://stackoverflow.com/questions/144046/how-to-incorporate-interactive-ruby-into-my-development-process/144887#144887 7 Answer by webmat for How to incorporate Interactive Ruby into my development process? webmat 2008-09-28T00:44:40Z 2008-09-28T00:44:40Z <p>Install the ruby-debug gem. Of course, require it inside your app (only in development/test mode). Now you can write 'debugger' where you want to stop execution.</p> <p>Once your app stop at your breakpoint, you can type 'help' to know about all commands. One of them is 'irb'. It starts an IRB session in which you have access to all methods in your current context.</p> <p>I personally mostly use p (print), eval, v i (instance vars) and v l (local vars). Of course, n for next and c for continue.</p> <p>The command to step out of a given block/method never worked for me though. I never investigated why :-)</p> http://stackoverflow.com/questions/144046/how-to-incorporate-interactive-ruby-into-my-development-process/534947#534947 1 Answer by ropata for How to incorporate Interactive Ruby into my development process? ropata 2009-02-11T00:31:35Z 2009-02-23T05:20:47Z <p>For Ruby development in Eclipse: there's a much improved version of RDT (ruby development tools) available now. To install it directly in Eclipse, click Help > Software Updates > Find and Install > Search for new features radio button > next > new remote Site > Name = Ruby and URL = <a href="http://update.aptana.com/update/rdt/3.2/" rel="nofollow">http://update.aptana.com/update/rdt/3.2/</a> </p> <p>Another Ruby plugin is the shiny new Eclipse DLTK (dynamic languages toolkit). <a href="http://download.eclipse.org/technology/dltk/downloads/" rel="nofollow">DLTK stable release 1.0.M5</a> just came out a few days ago. Here are some <a href="http://wiki.openqa.org/display/WTR/Setting+up+Eclipse+for+Ruby" rel="nofollow">useful installation tips</a>.</p>