Rails on the Edge
Installing Rails is supposed to be easy. (This isn't in the instructions of the video, but I assume I need to actually install Rails at some point!)
sudo gem install rails --include-dependencies --no-rdoc
(I used '--no-rdoc' proactively.)
Successfully installed activesupport-2.0.2
Successfully installed activerecord-2.0.2
Successfully installed actionpack-2.0.2
Successfully installed actionmailer-2.0.2
Successfully installed activeresource-2.0.2
Successfully installed rails-2.0.2
6 gems installed
Installing ri documentation for activesupport-2.0.2...
Installing ri documentation for activerecord-2.0.2...
Installing ri documentation for actionpack-2.0.2...
Installing ri documentation for actionmailer-2.0.2...
Installing ri documentation for activeresource-2.0.2...
Despite the '--no-rdoc', it seems to have installed the documentation. Oh well, no errors.
Ah, but I am running Ruby 1.9 which is not compatible with Rails 2.0.2. Ugh.
Using the latest Rails, Rails worked! (Welcome to life on the Edge.)