I just recently started getting back into Rails now that the new Agile Web Development with Rails book (3rd edition) came out.
I had an old, out-of-date installation of ruby and gem so I tried to follow the advice found at:
<http://blog.carlmercier.com/2007/12/14/how-to-fix-that-rubygems-mess-on-leopard/>
which recommended completely removing the Apple installed ruby and gem. After doing so, I then installed using MacPort per the instructions. Installation went okay until attempting to update Rubygems per this command:
sudo gem update --system
This resulted in an error:
/opt/local/bin/gem:14: undefined method `ruby_version' for Gem:Module (NoMethodError)
I googled for a solution and found this solution:
However after trying that solution I got yet another error:
gem install -l rubygems-update-1.2.0.gem
/opt/local/lib/ruby/site_ruby/1.8/rubygems/gem_runner.rb:18:in `initialize': uninitialized constant Gem::CommandManager (NameError) from /opt/local/bin/gem:24:in `new' from /opt/local/bin/gem:24
So I am wondering: Why is it so (apparently) difficult to update ruby and gem on Mac OS X? Is it just me? Or others having this same problem? This struggle to get ruby and gem up to date seems antithetical to the ease with which rails in general seems to work. This kind of makes me wish for an 'Instant Rails' solution for Mac OS X!
Does anyone here have an up-to-date solution for installing ruby 1.8.7 and gem 1.3.1 from scratch on Mac OS X that works?
TIA!