Upgrading a Rails Application from 3.2.6 to 3.2.8

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 ?

+6
source share
2 answers

Santiago Pastorino Hat Tip (a member of the Rails Core Team) who has confirmed this is required:

  • Change the Gemfile by changing the line gem 'rails', '3.2.6' to gem 'rails', '3.2.8'
  • Run bundle update rails

Tweet confirmation.

+3
source

After running $ bundle install run $ rake rails:update

+1
source

Source: https://habr.com/ru/post/922556/


All Articles