vote up 4 vote down star

I am working on a project using rails 2.1.1. With the new release of 2.2.2 I want to migrate to the new version. Is there anything I need to change to migrate my 2.1.1 controllers, views, and models?

flag

80% accept rate

4 Answers

vote up 6 vote down check

Don't forget to run the update Rake task

rake rails:update

That will go ahead and make sure it updates any scripts and configs to reflect 2.2.

Once you have 2.2 installed, issue:

rake -T

to view the available tasks, double check it's there and go ahead and fire it off and you'll be up and running.

Good luck!

link|flag
vote up 2 vote down

There aren't any major changes in the way things are done. Here is the list of deprecations

Of course the best way to quickly discover changes is to have a good test suite in place. If you don't have that, I suggest dropping 2.2 into vendor/rails and clicking around the site by hand.

link|flag
vote up 0 vote down

If you have any plugins that break, check GitHub. I had a bunch of plugins break with no official fixes. I searched GitHub and people had already patched them. Made the upgrade much better then it could have been.

link|flag
vote up 0 vote down

Not really. I would have to agree with @dasil003 and say to check deprecations, and run your tests accordingly after updating. However, you'll need rubygems 1.3.1 in order to upgrade, so don't forget to do so, or your app server won't start.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.