Ruby on Rails installation - Stack Overflow most recent 30 from stackoverflow.com 2010-03-22T08:14:17Z http://stackoverflow.com/feeds/question/1484290 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1484290/ruby-on-rails-installation 0 Ruby on Rails installation Tio http://stackoverflow.com/users/147615 2009-09-27T19:46:53Z 2009-12-20T00:00:01Z <p>I borrowed Agile Web Development with Rails from my local library, and for Mac development it asked me to view this article: <a href="http://hivelogic.com/articles/ruby-rails-mongrel-mysql-osx" rel="nofollow">http://hivelogic.com/articles/ruby-rails-mongrel-mysql-osx</a></p> <p>I'm a little bit worried about following the article because I am running Snow Leopard. Does anyone have an article for installing Rails for Snow Leopard? Your help is much appreciated.</p> http://stackoverflow.com/questions/1484290/ruby-on-rails-installation/1484317#1484317 0 Answer by Chuck for Ruby on Rails installation Chuck http://stackoverflow.com/users/50742 2009-09-27T19:57:39Z 2009-09-27T19:57:39Z <p>Snow Leopard includes Rails, so it isn't necessary to install it.</p> <p>But to install Rails from scratch, here is what you do:</p> <pre><code>sudo gem install rails </code></pre> <p>You then have Rails.</p> <p>That tutorial includes steps such as installing Ruby from scratch, which wouldn't hurt, but isn't as necessary as it was back then (the version of 1.8.2 that Apple included was old and buggy).</p> http://stackoverflow.com/questions/1484290/ruby-on-rails-installation/1484434#1484434 0 Answer by SingleShot for Ruby on Rails installation SingleShot http://stackoverflow.com/users/168212 2009-09-27T20:44:49Z 2009-09-27T20:44:49Z <p>Rails is already installed on Snow Leopard, but I did use <a href="http://hivelogic.com/articles/compiling-ruby-rubygems-and-rails-on-snow-leopard/" rel="nofollow">this article</a> to install a separate copy in <code>/usr/local</code> (the article has links to why that is a good idea).</p>