Installing Ruby On Rails on osx10.4…

These steps worked first time for me: http://hivelogic.com/articles/2007/02/ruby-rails-mongrel-mysql-osx …with only two minor hiccups:

1)  The step to install RubyGems specifies v0.9.2, but this should be v0.9.4. The instructions work identically, just change the version#.

2) If you hit this error while installing rails:

$ sudo gem install rails --include-dependencies
Bulk updating Gem source index for: http://gems.rubyforge.org
ERROR:  While executing gem ... (Gem::GemNotFoundException)
Could not find rails (> 0) in any repository
$
$ sudo gem update
$ sudo gem install rails --include-dependencies
...

I later discovered both of these nits already noted in the comments. There was so many other spam comments there, I only found them after I’d already figured out the solutions myself! 🙁 Regardless of those two very minor nits, I found Dan’s set of instructions on hivelogic.com to be outstanding. I went from complete zero to having a hello-world up and running in just a few minutes… all thanks to Dan’s hivelogic doc.

2 thoughts on “Installing Ruby On Rails on osx10.4…

Leave a Reply