<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: Help updating Ruby (on Rails)</title>
	<link>http://ask.metafilter.com/94838/Help-updating-Ruby-on-Rails/</link>
	<description>Comments on Ask MetaFilter post Help updating Ruby (on Rails)</description>
	<pubDate>Mon, 23 Jun 2008 19:53:55 -0800</pubDate>
	<lastBuildDate>Mon, 23 Jun 2008 19:53:55 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: Help updating Ruby (on Rails)</title>
		<link>http://ask.metafilter.com/94838/Help-updating-Ruby-on-Rails</link>	
		<description>How do I update Ruby/get RoR working? (OS X 10.4). &lt;br /&gt;&lt;br /&gt; Ok, I am generally tech savvy, so this is getting frustrating. &lt;br&gt;
&lt;br&gt;
I have Mr. Macky here that had ruby 1.8.2 on him when I got home from work. Thinking I&apos;d get a little web appy with some RoR, so I downloaded RubyGems as instructed &lt;a href=&quot;http://www.tutorialspoint.com/ruby-on-rails/rails-installation.htm&quot;&gt;here&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
When I run sudo ruby setup.rb, I get the following error: Expected Ruby version &amp;gt; 1.8.3, was 1.8.2.&lt;br&gt;
Ok, I think, so I go out to download 1.8.6, and follow the instructions as on the above page. Except that these directions install to the ruby-1.8.6 directory on my desktop.&lt;br&gt;
&lt;br&gt;
I google, I go through the instructions to update via fink. No dice. ruby -v still gets me 1.8.2; fink complains that ruby is up to date and refuses to update. After more googling and command-lining I somehow revert to version 1.8.1. Which is where I stand at this moment. &lt;br&gt;
&lt;br&gt;
Help! I feel like uber-fail. This should have been a 10 minute task at most. If anyone is up for a step by step help session, my email is in my profile--we can exchange IMs or something. &lt;br&gt;
&lt;br&gt;
Thanks in advance, guys.</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2008:site.94838</guid>
		<pubDate>Mon, 23 Jun 2008 19:31:55 -0800</pubDate>
		<dc:creator>theRussian</dc:creator>
		
			<category>fail</category>
		
			<category>ruby</category>
		
			<category>rubyonrails</category>
		
			<category>osx</category>
		
	</item> <item>
		<title>By: sideshow</title>
		<link>http://ask.metafilter.com/94838/Help-updating-Ruby-on-Rails#1385238</link>	
		<description>I haven&apos;t used fink in a long time, but from what I remember it installed everything into a separate tree (/opt/ maybe?) that was off the system path.  So, I&apos;d find out where this new ruby is installed and get that on the path.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.94838-1385238</guid>
		<pubDate>Mon, 23 Jun 2008 19:53:55 -0800</pubDate>
		<dc:creator>sideshow</dc:creator>
	</item><item>
		<title>By: TravellingDen</title>
		<link>http://ask.metafilter.com/94838/Help-updating-Ruby-on-Rails#1385241</link>	
		<description>Which ruby executable are you using - the system one, or the fink one?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.94838-1385241</guid>
		<pubDate>Mon, 23 Jun 2008 19:55:24 -0800</pubDate>
		<dc:creator>TravellingDen</dc:creator>
	</item><item>
		<title>By: alan</title>
		<link>http://ask.metafilter.com/94838/Help-updating-Ruby-on-Rails#1385257</link>	
		<description>When I wanted to give Ruby a run through I used &lt;a href=&quot;http://rubyosx.rubyforge.org/&quot;&gt;this package&lt;/a&gt;.  You&apos;ll want to read the whole page though, and follow the seperate instructions to get the documentation.&lt;br&gt;
&lt;br&gt;
Here&apos;s some older instructions for &lt;a href=&quot;http://hivelogic.com/articles/2005/12/ruby_rails_lighttpd_mysql_tiger&quot;&gt;building an entire rails stack on 10.4&lt;/a&gt;. &lt;br&gt;
&lt;br&gt;
Here&apos;s some newer instructions for &lt;a href=&quot;http://hivelogic.com/articles/2008/02/ruby-rails-leopard&quot;&gt;building an entire rails stack on 10.5&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
I have no idea how you managed to downgrade your system, but try the following commands in a terminal to help figure out which ruby in in your path (the first one) and where other ruby binaries might be&lt;br&gt;
&lt;br&gt;
$ which ruby&lt;br&gt;
$ whereis ruby&lt;br&gt;
$ locate ruby | less&lt;br&gt;
&lt;br&gt;
Finally, if none of those work, you can search your entire drive&lt;br&gt;
&lt;br&gt;
$ cd /&lt;br&gt;
$ find . -name &quot;ruby&quot; -print</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.94838-1385257</guid>
		<pubDate>Mon, 23 Jun 2008 20:08:57 -0800</pubDate>
		<dc:creator>alan</dc:creator>
	</item><item>
		<title>By: theRussian</title>
		<link>http://ask.metafilter.com/94838/Help-updating-Ruby-on-Rails#1385311</link>	
		<description>Thanks, alan. That first link with the package solved things. &lt;br&gt;
&lt;br&gt;
And for posterity(?), or in case anyone was interested,&lt;br&gt;
which ruby returned /sw/bin/ruby (the fink install, I believe)&lt;br&gt;
and whereis ruby resulted in /usr/bin/ruby&lt;br&gt;
&lt;br&gt;
Oh, I an I managed to downgrade by throwing in a hash -r somewheres. I realized that I probably should have researched the command before executing it, but I was getting frustrated. &lt;br&gt;
&lt;br&gt;
Thanks again MeFi!</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.94838-1385311</guid>
		<pubDate>Mon, 23 Jun 2008 20:52:43 -0800</pubDate>
		<dc:creator>theRussian</dc:creator>
	</item><item>
		<title>By: PueExMachina</title>
		<link>http://ask.metafilter.com/94838/Help-updating-Ruby-on-Rails#1385462</link>	
		<description>&lt;a href=&quot;http://polibyte.com/presentations/making_ruby_on_rails_work_for_you&quot;&gt;This presentation&lt;/a&gt; is for Leopard you may find it useful as you progress. Feel free to send me a mefi mail about it.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2008:site.94838-1385462</guid>
		<pubDate>Tue, 24 Jun 2008 01:46:40 -0800</pubDate>
		<dc:creator>PueExMachina</dc:creator>
	</item>
	</channel>
</rss>
