First step for upgrading to rails 3.
Check rake rails:upgrade:check for next steps.
This commit is contained in:
parent
a689bdd5f5
commit
4eba5fbc9c
45 changed files with 6139 additions and 2212 deletions
26
vendor/plugins/rails_upgrade/README
vendored
Normal file
26
vendor/plugins/rails_upgrade/README
vendored
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
= rails-upgrade
|
||||
|
||||
A simple battery of scripts for upgrading Rails app/checking them for required updates. This application should work on Rails 2.x and 3.0, with a focus on upgrading to 3.0.
|
||||
|
||||
== Usage
|
||||
|
||||
You need to install this plugin first:
|
||||
|
||||
script/plugin install git://github.com/rails/rails_upgrade.git
|
||||
|
||||
Then you can run its rake tasks to check your application:
|
||||
|
||||
# Check your app for required upgrades
|
||||
rake rails:upgrade:check
|
||||
|
||||
# Backup your likely modified files that might be overwritten by the generator
|
||||
rake rails:upgrade:backup
|
||||
|
||||
# Generate a new route file
|
||||
rake rails:upgrade:routes
|
||||
|
||||
# Generate a Gemfile from your config.gem directives
|
||||
rake rails:upgrade:gems
|
||||
|
||||
# Generate code for a new config/application.rb from your environment.rb
|
||||
rake rails:upgrade:configuration
|
||||
Loading…
Add table
Add a link
Reference in a new issue