I have a Rails application that was created using Rails 3.2.6 . Now that 3.2.8 been released, is that all I need to do to update the application?
- Change the
Gemfile by changing the line gem 'rails', '3.2.6' to gem 'rails', '3.2.8' - Run
bundle update rails
What about other Rails generated entries in the Gemfile , such as sass-rails , coffee-rails and uglifier ?
source share