I have a Rails app that was created using Rails 3.2.6
. Now that 3.2.8
has been released, is this all I need to do to update the app?
- Edit
Gemfile
, changing the linegem '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
?
rake rails:update
appeared to update all of the following files, but none of them changed so I don't think it's required when upgrading from3.2.6
to3.2.8
. Thanks though! – Zoara