How do you upgrade from Rails 3 to Rails 3.1 beta?
feedback
|
|
This is what worked for me when updating an existing rails 3.0.8 project. Your mileage may vary... Update the rails version specified in my Gemfile to use the latest release candidate:
Update the bundle:
Then update the project with the rake command:
After cherry picking though the change conflicts I ran all my tests and they passed (yay!). I restarted the server and everything seems good so far. However, this is not using the new asset pipeline yet. By that I mean the javascript and css (or sass) files are still being handled in the pre-pipeline manner. As I understand it, this is a perfectly viable option. But of course, I want the new goodness, so I believe the next steps are to include and additional gems (e.g. coffeescript, sass, uglifier, etc) and then to migrate the old files to the app/assets directory. I found some details about that are here: http://blog.nodeta.com/2011/06/14/rails-3-1-asset-pipeline-in-the-real-world/ Hope that was helpful. | |||||||
feedback
|
|
I just upgraded from 3.0 to 3.1 by changing my Gemfile to:
I also commented out the following line below in config/environments/development.rb
Finally, make sure you enable the asset pipeline in config/application.rb
I'm not sure if you've already read the release notes http://weblog.rubyonrails.org/2011/4/21/jquery-new-default | |||||||||
feedback
|
|
watch it :) | |||||||||||||||||
feedback
|
Upgrading RailsUpdate: be cautious of using your system rake, as rake has been upgraded.
ensures you'll be using the correct rake for a given rails project (source) I suggest beginning with a fresh app, then copying in your specific app information while shifting your resources into the new asset/sprockets format.
Depending on the complexity of your database, you'll either want to create new migrations using the change syntax or leave them be:
I had an issue deploying to Heroku, but theRubyRacer gem helped square that away. Here's an example of a simple Gem file:
I suspect there will be community utilities to help you automate migration from older versions of Rails to the --edge. References: | ||||
|
feedback
|
|
I recommend updating your Gemfile to use edge rails. For example:
You can read more here http://pogodan.com/blog/2011/04/24/easy-edge-rails. | ||||
feedback
|
|
If i understood your question correctly this is how:
| |||
|
feedback
|
|
This is a pretty good guide which goes into some detail about installing Rails 3.1: | |||
|
feedback
|
|
http://railscasts.com/episodes/282-upgrading-to-rails-3-1 this railscast might help ! | |||
|
feedback
|
|
Upgrading a rails 3.0.7 and 3.0.9 app using this guide worked for me http://davidjrice.co.uk/2011/05/25/how-to-upgrade-a-rails-application-to-version-3-1-0.html You can skip steps 3 and higher if you want--it will still work, although you won't be taking advantage of everything new in rails 3.1. | |||
|
feedback
|