<?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: Digging Into A Ruby Installation, Require vs Load And Other Stuff</title> <atom:link href="http://www.skorks.com/2009/08/digging-into-a-ruby-installation-require-vs-load/feed/" rel="self" type="application/rss+xml" /><link>http://www.skorks.com/2009/08/digging-into-a-ruby-installation-require-vs-load/</link> <description>For the betterment of the software craft...</description> <lastBuildDate>Mon, 21 Nov 2011 13:57:06 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.1.2</generator> <item><title>By: andy</title><link>http://www.skorks.com/2009/08/digging-into-a-ruby-installation-require-vs-load/comment-page-1/#comment-7066</link> <dc:creator>andy</dc:creator> <pubDate>Thu, 24 Mar 2011 16:11:00 +0000</pubDate> <guid
isPermaLink="false">http://www.skorks.com/?p=992#comment-7066</guid> <description>Thanks, this was very helpful. I was stuck until I saw the part about adding &quot;require &#039;rubygems&#039;&quot; before requiring any other gems. I&#039;m using Ruby 1.8.7.</description> <content:encoded><![CDATA[<p>Thanks, this was very helpful. I was stuck until I saw the part about adding &#8220;require &#8216;rubygems&#8217;&#8221; before requiring any other gems. I&#8217;m using Ruby 1.8.7.</p> ]]></content:encoded> </item> <item><title>By: roger</title><link>http://www.skorks.com/2009/08/digging-into-a-ruby-installation-require-vs-load/comment-page-1/#comment-6930</link> <dc:creator>roger</dc:creator> <pubDate>Fri, 25 Feb 2011 20:15:51 +0000</pubDate> <guid
isPermaLink="false">http://www.skorks.com/?p=992#comment-6930</guid> <description>I think Config comes from
require &#039;rbconfig&#039;
RbConfig
if I&#039;m not mistaken...
@Dylan it&#039;s a new thing in 1.9.2
work around:
$: &lt;&lt; &#039;.&#039;</description> <content:encoded><![CDATA[<p>I think Config comes from<br
/> require &#8216;rbconfig&#8217;<br
/> RbConfig<br
/> if I&#8217;m not mistaken&#8230;</p><p>@Dylan it&#8217;s a new thing in 1.9.2<br
/> work around:<br
/> $: &lt;&lt; &#039;.&#039;</p> ]]></content:encoded> </item> <item><title>By: Dylan</title><link>http://www.skorks.com/2009/08/digging-into-a-ruby-installation-require-vs-load/comment-page-1/#comment-3275</link> <dc:creator>Dylan</dc:creator> <pubDate>Fri, 23 Oct 2009 16:04:45 +0000</pubDate> <guid
isPermaLink="false">http://www.skorks.com/?p=992#comment-3275</guid> <description>One thing I&#039;m noticing in ruby 1.9 is that the current working directory is missing from the ruby path (i.e. &quot;.&quot; is not at the end of the $: array). I can&#039;t find anything about this on the interwebs and I&#039;m going nuts trying to figure out the best way to deal with it.
Thanks for a helpful post.</description> <content:encoded><![CDATA[<p>One thing I&#8217;m noticing in ruby 1.9 is that the current working directory is missing from the ruby path (i.e. &#8220;.&#8221; is not at the end of the $: array). I can&#8217;t find anything about this on the interwebs and I&#8217;m going nuts trying to figure out the best way to deal with it.</p><p>Thanks for a helpful post.</p> ]]></content:encoded> </item> <item><title>By: Alan Skorkin</title><link>http://www.skorks.com/2009/08/digging-into-a-ruby-installation-require-vs-load/comment-page-1/#comment-2164</link> <dc:creator>Alan Skorkin</dc:creator> <pubDate>Thu, 20 Aug 2009 02:24:44 +0000</pubDate> <guid
isPermaLink="false">http://www.skorks.com/?p=992#comment-2164</guid> <description>Oh yeah, cheers for reminding me, I&#039;ve been meaning to update but it has slipped my mind</description> <content:encoded><![CDATA[<p>Oh yeah, cheers for reminding me, I&#8217;ve been meaning to update but it has slipped my mind</p> ]]></content:encoded> </item> <item><title>By: Marcelo</title><link>http://www.skorks.com/2009/08/digging-into-a-ruby-installation-require-vs-load/comment-page-1/#comment-2162</link> <dc:creator>Marcelo</dc:creator> <pubDate>Thu, 20 Aug 2009 01:17:37 +0000</pubDate> <guid
isPermaLink="false">http://www.skorks.com/?p=992#comment-2162</guid> <description>Congrats on a great article, and thanks for it!
James H is right, though. I went into irb and couldn&#039;t load the Config object, until I required &#039;rubygems&#039;. So yeah, it&#039;s a RubyGems thing, you might want to put that in your article so the next people who read it will know.
Cheers!</description> <content:encoded><![CDATA[<p>Congrats on a great article, and thanks for it!</p><p>James H is right, though. I went into irb and couldn&#8217;t load the Config object, until I required &#8216;rubygems&#8217;. So yeah, it&#8217;s a RubyGems thing, you might want to put that in your article so the next people who read it will know.</p><p>Cheers!</p> ]]></content:encoded> </item> <item><title>By: Ennuyer.net &#187; Blog Archive &#187; Rails Reading - August 12, 2009</title><link>http://www.skorks.com/2009/08/digging-into-a-ruby-installation-require-vs-load/comment-page-1/#comment-2013</link> <dc:creator>Ennuyer.net &#187; Blog Archive &#187; Rails Reading - August 12, 2009</dc:creator> <pubDate>Wed, 12 Aug 2009 14:25:36 +0000</pubDate> <guid
isPermaLink="false">http://www.skorks.com/?p=992#comment-2013</guid> <description>[...]  Digging Into A Ruby Installation, Require vs Load And Other Stuff  [...]</description> <content:encoded><![CDATA[<p>[...]  Digging Into A Ruby Installation, Require vs Load And Other Stuff  [...]</p> ]]></content:encoded> </item> <item><title>By: Alan Skorkin</title><link>http://www.skorks.com/2009/08/digging-into-a-ruby-installation-require-vs-load/comment-page-1/#comment-1982</link> <dc:creator>Alan Skorkin</dc:creator> <pubDate>Mon, 10 Aug 2009 12:02:18 +0000</pubDate> <guid
isPermaLink="false">http://www.skorks.com/?p=992#comment-1982</guid> <description>Thanks for picking that up, much appreciated (and fixed). That&#039;s what the internet is all about - collaboration :).</description> <content:encoded><![CDATA[<p>Thanks for picking that up, much appreciated (and fixed). That&#8217;s what the internet is all about &#8211; collaboration :).</p> ]]></content:encoded> </item> <item><title>By: anon</title><link>http://www.skorks.com/2009/08/digging-into-a-ruby-installation-require-vs-load/comment-page-1/#comment-1981</link> <dc:creator>anon</dc:creator> <pubDate>Mon, 10 Aug 2009 11:50:06 +0000</pubDate> <guid
isPermaLink="false">http://www.skorks.com/?p=992#comment-1981</guid> <description>&quot;...how the language does it’s work...&quot;
s/it&#039;s/its
I think you probably need to work a little more on your English language skills, before pontificating about programming languages. ;)</description> <content:encoded><![CDATA[<p>&#8220;&#8230;how the language does it’s work&#8230;&#8221;<br
/> s/it&#8217;s/its<br
/> I think you probably need to work a little more on your English language skills, before pontificating about programming languages. ;)</p> ]]></content:encoded> </item> <item><title>By: Alan Skorkin</title><link>http://www.skorks.com/2009/08/digging-into-a-ruby-installation-require-vs-load/comment-page-1/#comment-1972</link> <dc:creator>Alan Skorkin</dc:creator> <pubDate>Mon, 10 Aug 2009 05:04:54 +0000</pubDate> <guid
isPermaLink="false">http://www.skorks.com/?p=992#comment-1972</guid> <description>You&#039;ll have to show me how you do that at some point.</description> <content:encoded><![CDATA[<p>You&#8217;ll have to show me how you do that at some point.</p> ]]></content:encoded> </item> <item><title>By: Alan Skorkin</title><link>http://www.skorks.com/2009/08/digging-into-a-ruby-installation-require-vs-load/comment-page-1/#comment-1971</link> <dc:creator>Alan Skorkin</dc:creator> <pubDate>Mon, 10 Aug 2009 05:04:06 +0000</pubDate> <guid
isPermaLink="false">http://www.skorks.com/?p=992#comment-1971</guid> <description>I wasn&#039;t aware of that, might need to look into this further.</description> <content:encoded><![CDATA[<p>I wasn&#8217;t aware of that, might need to look into this further.</p> ]]></content:encoded> </item> </channel> </rss>
