I have a Rails 3.0 app (technically 3.0.7) which I would like to upgrade to Rails 3.1 to make use of the new asset pipeline and other fancy new features. What is the best approach to doing this? Should I use the rails new generator, then copy everything from my old app over to the new one? What about version control? I already have my old app using Git.
| |||
|
feedback
|
|
Just upgraded one of my apps from 3.0.9 to 3.1.0, here's my approach, your mileage might vary: Edit Gemfile, change Rails gem version
Also adds new gems introduced in 3.1.0
run Then run Move your css/javascript/images etc to Include css/javascript links in your layout file like this
| |||||||||||||||||
feedback
|
|
Get familiar with rails 3.1, here are the resources: http://jasonrudolph.com/blog/2011/06/06/helpful-resources-for-upgrading-to-rails-3-1/ The most important thing are your current test, make sure you have a good test coverage of your 3.0 app before you start. | |||
|
feedback
|
|
First, follow the instructions here to install Rails 3.1 using RVM: Create a new branch in your Git repo. Take a look at the Rails 3.1 Example Apps if you are using Devise, RSpec or Cucumber because they will give you a good working reference implementation. If not, just use Then use a file compare tool (such as FileMerge or Changes on Mac OS X) to identify where the Rails 3.1 code differs from your 3.0 app. | |||
|
feedback
|
|
I have just done this today with an app from 3.0.9 Take a look at this blog, its pretty simple. http://davidjrice.co.uk/2011/05/25/how-to-upgrade-a-rails-application-to-version-3-1-0.html Its just a matter of changing gem file, a few config variables,moving a few assets and creating some css and js manifest files, shouldn't take more than an hour. | |||
|
feedback
|
|
copy this gems to your gem file replacing the old once gem 'rails', '3.1.0'
All you have to do is run you can also run | |||
|
feedback
|