<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.2.1" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/">
<channel>
	<title>Comments for Ruby, a message to you</title>
	<link>http://ruby.tie-rack.org</link>
	<description>Ruby.send(:stop, 'messing around')</description>
	<pubDate>Mon, 12 May 2008 14:38:48 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>

	<item>
		<title>Comment on Installing 1.9 by Ruby 1.9 porting notes &#171; Boga Mac blog</title>
		<link>http://ruby.tie-rack.org/28/installing-19/#comment-511</link>
		<author>Ruby 1.9 porting notes &#171; Boga Mac blog</author>
		<pubDate>Sat, 03 May 2008 10:01:16 +0000</pubDate>
		<guid>http://ruby.tie-rack.org/28/installing-19/#comment-511</guid>
		<description>[...] Installing ruby 1.9 on MacOSX [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] Installing ruby 1.9 on MacOSX [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing 1.9 by Nikos D.</title>
		<link>http://ruby.tie-rack.org/28/installing-19/#comment-505</link>
		<author>Nikos D.</author>
		<pubDate>Mon, 21 Apr 2008 16:06:42 +0000</pubDate>
		<guid>http://ruby.tie-rack.org/28/installing-19/#comment-505</guid>
		<description>&lt;strong&gt;Migrating to Ruby 1.9 (YARV): Posts you have to re...&lt;/strong&gt;

So, you are reading everywhere that Ruby 1.9 is faster than 1.8 (even I say so! :D ) and you want to give it a try or even port your existing code to it. Where should you start from?...</description>
		<content:encoded><![CDATA[<p><strong>Migrating to Ruby 1.9 (YARV): Posts you have to re&#8230;</strong></p>
<p>So, you are reading everywhere that Ruby 1.9 is faster than 1.8 (even I say so! :D ) and you want to give it a try or even port your existing code to it. Where should you start from?&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Evil: knowing when a method got passed the default value by Ben Goering</title>
		<link>http://ruby.tie-rack.org/64/evil-knowing-when-a-method-got-passed-the-default-value/#comment-503</link>
		<author>Ben Goering</author>
		<pubDate>Wed, 16 Apr 2008 23:00:19 +0000</pubDate>
		<guid>http://ruby.tie-rack.org/64/evil-knowing-when-a-method-got-passed-the-default-value/#comment-503</guid>
		<description>What a fabulous way to humiliate fools!

Cool post, though. Even a ruby noob like me can understand it!</description>
		<content:encoded><![CDATA[<p>What a fabulous way to humiliate fools!</p>
<p>Cool post, though. Even a ruby noob like me can understand it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Evil: knowing when a method got passed the default value by Chris Shea</title>
		<link>http://ruby.tie-rack.org/64/evil-knowing-when-a-method-got-passed-the-default-value/#comment-497</link>
		<author>Chris Shea</author>
		<pubDate>Sun, 13 Apr 2008 15:47:15 +0000</pubDate>
		<guid>http://ruby.tie-rack.org/64/evil-knowing-when-a-method-got-passed-the-default-value/#comment-497</guid>
		<description>@João: The original problem was that I had a method that should take any object whatsoever and return something based on that, but return something else if the method wasn't passed anything. A default value of nil wouldn't help in that case, because the method was expected to handle nil just like everything else.

The solution I ended up with was to rethink my approach. But x=(x_not_given = true) could have worked.</description>
		<content:encoded><![CDATA[<p>@João: The original problem was that I had a method that should take any object whatsoever and return something based on that, but return something else if the method wasn&#8217;t passed anything. A default value of nil wouldn&#8217;t help in that case, because the method was expected to handle nil just like everything else.</p>
<p>The solution I ended up with was to rethink my approach. But x=(x_not_given = true) could have worked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Evil: knowing when a method got passed the default value by João Paulo Lins</title>
		<link>http://ruby.tie-rack.org/64/evil-knowing-when-a-method-got-passed-the-default-value/#comment-496</link>
		<author>João Paulo Lins</author>
		<pubDate>Sun, 13 Apr 2008 15:16:09 +0000</pubDate>
		<guid>http://ruby.tie-rack.org/64/evil-knowing-when-a-method-got-passed-the-default-value/#comment-496</guid>
		<description>I think to do conditional within method is best, because code is more legible and safe.However is like you said: "Use that at your own peril."

def greet_world(salutation = nil)
salutation = salutation.nil? ? 'Hello' : salutation == 'Hello' ? 'YOU HAVE NO IMAGINATION!' : salutation
end</description>
		<content:encoded><![CDATA[<p>I think to do conditional within method is best, because code is more legible and safe.However is like you said: &#8220;Use that at your own peril.&#8221;</p>
<p>def greet_world(salutation = nil)<br />
salutation = salutation.nil? ? &#8216;Hello&#8217; : salutation == &#8216;Hello&#8217; ? &#8216;YOU HAVE NO IMAGINATION!&#8217; : salutation<br />
end</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Evil: knowing when a method got passed the default value by crayz</title>
		<link>http://ruby.tie-rack.org/64/evil-knowing-when-a-method-got-passed-the-default-value/#comment-495</link>
		<author>crayz</author>
		<pubDate>Sun, 13 Apr 2008 03:57:36 +0000</pubDate>
		<guid>http://ruby.tie-rack.org/64/evil-knowing-when-a-method-got-passed-the-default-value/#comment-495</guid>
		<description>Wow, just wow. That is ridiculous, but I can actually see it coming in handy sometimes (e.g. maintaining backwards compatibility with an API that's changing default values in a method call)

Very cool tip</description>
		<content:encoded><![CDATA[<p>Wow, just wow. That is ridiculous, but I can actually see it coming in handy sometimes (e.g. maintaining backwards compatibility with an API that&#8217;s changing default values in a method call)</p>
<p>Very cool tip</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on You might be able to stop trying to call methods on nil by Rails Podcast Brasil - Episódio 8</title>
		<link>http://ruby.tie-rack.org/54/you-might-be-able-to-stop-trying-to-call-methods-on-nil/#comment-488</link>
		<author>Rails Podcast Brasil - Episódio 8</author>
		<pubDate>Tue, 01 Apr 2008 14:08:30 +0000</pubDate>
		<guid>http://ruby.tie-rack.org/54/you-might-be-able-to-stop-trying-to-call-methods-on-nil/#comment-488</guid>
		<description>[...] You might be able to stop trying to call methods on nil [...]</description>
		<content:encoded><![CDATA[<p>[&#8230;] You might be able to stop trying to call methods on nil [&#8230;]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Salt Lake City by Corey</title>
		<link>http://ruby.tie-rack.org/59/salt-lake-city/#comment-475</link>
		<author>Corey</author>
		<pubDate>Fri, 28 Mar 2008 18:17:58 +0000</pubDate>
		<guid>http://ruby.tie-rack.org/59/salt-lake-city/#comment-475</guid>
		<description>Seriously Chris! You wore the exact same outfit at the last MountainWest RubyConf! http://ruby.tie-rack.org/48/mountainwest-rubyconf/</description>
		<content:encoded><![CDATA[<p>Seriously Chris! You wore the exact same outfit at the last MountainWest RubyConf! <a href="http://ruby.tie-rack.org/48/mountainwest-rubyconf/" rel="nofollow">http://ruby.tie-rack.org/48/mountainwest-rubyconf/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Salt Lake City by Peter Jones</title>
		<link>http://ruby.tie-rack.org/59/salt-lake-city/#comment-474</link>
		<author>Peter Jones</author>
		<pubDate>Fri, 28 Mar 2008 15:10:20 +0000</pubDate>
		<guid>http://ruby.tie-rack.org/59/salt-lake-city/#comment-474</guid>
		<description>Don't let Chris fool you, he wears the same outfit every day, not just when he's in Utah.</description>
		<content:encoded><![CDATA[<p>Don&#8217;t let Chris fool you, he wears the same outfit every day, not just when he&#8217;s in Utah.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Speeding up gem on OS X Leopard by E. James O'Kelly</title>
		<link>http://ruby.tie-rack.org/58/speeding-up-gem-on-os-x-leopard/#comment-473</link>
		<author>E. James O'Kelly</author>
		<pubDate>Fri, 28 Mar 2008 00:34:17 +0000</pubDate>
		<guid>http://ruby.tie-rack.org/58/speeding-up-gem-on-os-x-leopard/#comment-473</guid>
		<description>You are my new hero! This has been pissing me off for a long time now and I have had to resource to downloading gems and installing them locally, which obviously keeps me from updating existing gems.

To find where your gem script is just do a:

which gem</description>
		<content:encoded><![CDATA[<p>You are my new hero! This has been pissing me off for a long time now and I have had to resource to downloading gems and installing them locally, which obviously keeps me from updating existing gems.</p>
<p>To find where your gem script is just do a:</p>
<p>which gem</p>
]]></content:encoded>
	</item>
</channel>
</rss>
