Plugin to run checks on your Rails 2.x/3.x to check for obvious upgrade points on the path to 3.0
Go to file
Jeremy McAnally ff685a759c Have some nice instructions after the installation of the plugin 2010-02-02 19:14:27 -06:00
lib Add new generator for generating an application.rb from your existing environment.rb code 2010-02-02 18:55:50 -06:00
tasks Add backup task; this will protect likely modified files from overwriting by the Rails 3 generator 2010-02-02 19:14:11 -06:00
test Add new generator for generating an application.rb from your existing environment.rb code 2010-02-02 18:55:50 -06:00
MIT-LICENSE Add name in license 2010-02-02 18:56:00 -06:00
README Initial commit of Rake task/plugin version of rails-upgrade script 2010-01-31 20:27:32 -06:00
Rakefile Switch to FileList for test task 2010-02-02 18:56:15 -06:00
init.rb Initial commit of Rake task/plugin version of rails-upgrade script 2010-01-31 20:27:32 -06:00
install.rb Have some nice instructions after the installation of the plugin 2010-02-02 19:14:27 -06:00
uninstall.rb Initial commit of Rake task/plugin version of rails-upgrade script 2010-01-31 20:27:32 -06:00

README

= 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

    # Check your app for required upgrades
    rake rails:upgrade:check
    
    # Generate a new route file
    rake rails:upgrade:routes
    
    # Generate a Gemfile from your config.gem directives
    rake rails:upgrade:gems