Upgrading Rails

One tip to upgrade your Rails is by running Gem to get the latest release. You can do this using:
• gem update rails -y
or
• sudo gem update rails -y
If you are planning to upgrade your existing projects in Rails, you can try the following method:
• Open your_project/config/environment.rb and change RAILS_GEM_VERSION to determine the version you just upgraded to.
• Run rake rails:update from your project’s root directory (this will copy in new versions of javascript libraries, etc.).
• Check to make sure that any tests you may have written still pass.
Also remember to use gem cleanup to remove older versions of rails.