<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Improved irb configuration</title>
	<atom:link href="http://dancingpenguinsoflight.com/2009/07/improved-irb-configuration/feed/" rel="self" type="application/rss+xml" />
	<link>http://dancingpenguinsoflight.com/2009/07/improved-irb-configuration/</link>
	<description></description>
	<lastBuildDate>Sat, 19 May 2012 07:40:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Samuel Huckins</title>
		<link>http://dancingpenguinsoflight.com/2009/07/improved-irb-configuration/comment-page-1/#comment-29376</link>
		<dc:creator>Samuel Huckins</dc:creator>
		<pubDate>Thu, 13 Jan 2011 14:53:59 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=1068#comment-29376</guid>
		<description>Wow, that looks super handy! Thanks, Alex! I will have to play with that some more and blog about it in specific. I got it installed and was able to get the interactive method searches working (&quot;String.ri //&quot;, etc). However running it on simple class and specific methods didn&#039;t seem to work:

&lt;code lang=&quot;ruby&quot;&gt;&gt;&gt; String.ri :upcase
Looking up topics [String#upcase] .
No articles found
=&gt; nil
&gt;&gt; Array.ri
Looking up topics [Array] .
No articles found
=&gt; nil&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Wow, that looks super handy! Thanks, Alex! I will have to play with that some more and blog about it in specific. I got it installed and was able to get the interactive method searches working (&#8220;String.ri //&#8221;, etc). However running it on simple class and specific methods didn&#8217;t seem to work:</p>
<div class="codecolorer-container ruby blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br />6<br />7<br />8<br /></div></td><td><div class="ruby codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap"><span style="color:#006600; font-weight:bold;">&gt;&gt;</span> <span style="color:#CC0066; font-weight:bold;">String</span>.<span style="color:#9900CC;">ri</span> <span style="color:#ff3333; font-weight:bold;">:upcase</span><br />
Looking up topics <span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#CC0066; font-weight:bold;">String</span><span style="color:#008000; font-style:italic;">#upcase] .</span><br />
No articles found<br />
<span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#0000FF; font-weight:bold;">nil</span><br />
<span style="color:#006600; font-weight:bold;">&gt;&gt;</span> <span style="color:#CC0066; font-weight:bold;">Array</span>.<span style="color:#9900CC;">ri</span><br />
Looking up topics <span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#CC0066; font-weight:bold;">Array</span><span style="color:#006600; font-weight:bold;">&#93;</span> .<br />
<span style="color:#9900CC;">No</span> articles found<br />
<span style="color:#006600; font-weight:bold;">=&gt;</span> <span style="color:#0000FF; font-weight:bold;">nil</span></div></td></tr></tbody></table></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Fortuna</title>
		<link>http://dancingpenguinsoflight.com/2009/07/improved-irb-configuration/comment-page-1/#comment-29365</link>
		<dc:creator>Alex Fortuna</dc:creator>
		<pubDate>Thu, 13 Jan 2011 11:51:30 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=1068#comment-29365</guid>
		<description>Nice hacks.

Regarding `interesting_methods`, there&#039;s a more systematic approach offered by ORI gem -- interactive method list with regular expressions and a bunch of neat filtering options.

Also, you get a _working_ RI in your IRB console.

Info: &lt;a href=&quot;http://github.com/dadooda/ori&quot; rel=&quot;nofollow&quot;&gt;http://github.com/dadooda/ori&lt;/a&gt;.

&lt;a href=&quot;http://www.screencast-o-matic.com/watch/cXVVYuXpH&quot; rel=&quot;nofollow&quot;&gt;Watch intro screencast&lt;/a&gt;.

### Setup (`~/.irbrc`) ###

&lt;code&gt;
require &quot;rubygems&quot;
require &quot;ori&quot;
&lt;/code&gt;

### Request RI on a Class ###

&lt;code&gt;
Array.ri
String.ri
[].ri
&quot;&quot;.ri
5.ri
&lt;/code&gt;

### Request RI on a Method ###

&lt;code&gt;
String.ri :upcase
&quot;&quot;.ri :upcase
[].ri :sort
Hash.ri :[]
&lt;/code&gt;

### Request Interactive Method List ###

&lt;code&gt;
String.ri //
&quot;&quot;.ri //
&quot;&quot;.ri /case/
&quot;&quot;.ri /^to_/
User.ri /^validates_/
&lt;/code&gt;

etc.

Cheers!</description>
		<content:encoded><![CDATA[<p>Nice hacks.</p>
<p>Regarding `interesting_methods`, there&#8217;s a more systematic approach offered by ORI gem &#8212; interactive method list with regular expressions and a bunch of neat filtering options.</p>
<p>Also, you get a _working_ RI in your IRB console.</p>
<p>Info: <a href="http://github.com/dadooda/ori" rel="nofollow">http://github.com/dadooda/ori</a>.</p>
<p><a href="http://www.screencast-o-matic.com/watch/cXVVYuXpH" rel="nofollow">Watch intro screencast</a>.</p>
<p>### Setup (`~/.irbrc`) ###</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">require &quot;rubygems&quot;<br />
require &quot;ori&quot;</div></td></tr></tbody></table></div>
<p>### Request RI on a Class ###</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">Array.ri<br />
String.ri<br />
[].ri<br />
&quot;&quot;.ri<br />
5.ri</div></td></tr></tbody></table></div>
<p>### Request RI on a Method ###</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">String.ri :upcase<br />
&quot;&quot;.ri :upcase<br />
[].ri :sort<br />
Hash.ri :[]</div></td></tr></tbody></table></div>
<p>### Request Interactive Method List ###</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br />4<br />5<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">String.ri //<br />
&quot;&quot;.ri //<br />
&quot;&quot;.ri /case/<br />
&quot;&quot;.ri /^to_/<br />
User.ri /^validates_/</div></td></tr></tbody></table></div>
<p>etc.</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sobber</title>
		<link>http://dancingpenguinsoflight.com/2009/07/improved-irb-configuration/comment-page-1/#comment-7633</link>
		<dc:creator>Sobber</dc:creator>
		<pubDate>Sun, 18 Oct 2009 20:04:06 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=1068#comment-7633</guid>
		<description>Really good post, using parts of that for my own .irbrc now.</description>
		<content:encoded><![CDATA[<p>Really good post, using parts of that for my own .irbrc now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: A better Ruby prompt &#124; tail -f findings.out</title>
		<link>http://dancingpenguinsoflight.com/2009/07/improved-irb-configuration/comment-page-1/#comment-5441</link>
		<dc:creator>A better Ruby prompt &#124; tail -f findings.out</dc:creator>
		<pubDate>Sun, 19 Jul 2009 02:20:31 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=1068#comment-5441</guid>
		<description>[...] After hearing about this, I looked around for example .irbrc files and put together a decent one. Check out this post for more details.   Share and [...]</description>
		<content:encoded><![CDATA[<p>[...] After hearing about this, I looked around for example .irbrc files and put together a decent one. Check out this post for more details.   Share and [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

