Ruby on Rails 1.2 Released
Tags: ruby on rails
Posted 19. January 2007.
It's there finally: Ruby on Rails 1.2 as been announced today. Read all about it in the official announcement on the Rails weblog. Go to the cpanel in your webhost to check it out. I have upgraded Rails on my development box and everything runs smooth so far.
You may want to freeze your current Rails installation into your application's vendor/ directory, just in case anything breaks with your app:
$ rake freeze_gems
Move your "frozen" rails to a safe location. Upgrade Rails and run the tests, if you have set that up:
$ cd my_app
$ rake
If the tests fail or you experience any problems, you can copy your old Rails release back into the vendor/ directory and fix things to work with the 1.2 release first.
