Upgrading to Rails 1.2.6
by Frank Kim on Jan.28, 2008, under Ruby on Rails
Today I upgraded to Rails 1.2.6 as I prepare to move towards Rails 2.0. Notes on this release can be found here.
Here are the steps I took.
- Upgrade Ruby Gems to the latest version (in this case 1.0.1).
gem update --system - Upgrade Ruby on Rails to the latest version (in this case 2.0.2).
gem install rails
To specify upgrading to Ruby on Rails 1.2.6 do this.
gem install rails -v 1.2.6
(What I probably should have done was a gem update because now I have installed 1.2.6 and 1.2.3.) - Update configuration.
set RAILS_GEM_VERSION to ‘1.2.6’ in config/environment.rb
rake rails:update:configs
Related posts:
2 Trackbacks / Pingbacks for this entry
February 11th, 2008 on 5:19 PM
[...] after installing the latest version of Ruby and updating to Ruby on Rails 1.2.6 everything seemed fine. [...]
February 12th, 2008 on 7:23 PM
[...] I updated MeetingKoreans.com to Rails 1.2.6 using these instructions and it was quite a frustrating experience. There were three problems that took up most of the [...]