read
If your application is currently on any version of Rails 2.1.x,
Then following changes needs to be done for upgrading your application to Rails 2.3.11
1. First install Rails version 2.3.11
2. Freeze app ruby gems
Hopefully it should work for you but it gave me following error
> undefined method `manage_gems’ for Gem:Module
3. Create sample rails 2.3.11 app
Now, Copy all missing “config/initializers/*” files from newly created “testapp” to the application that is to be upgraded.
4. Change Rails version inside environment.rb
to Rails 2.3.11
5. Rename app/controllers/application.rb file to app/controllers/application_controller.rb
OR
6. Start rails server and fix the issues one by one