Update rails to version 4.2

Furthermore it was necessary to add the following gems:
- responders
- web-console

And additional it was necessary to update these gems manually:
- devise
- turbolinks
- delayed_job_active_record
- money-rails

And the corresponding dependencies.
http://edgeguides.rubyonrails.org/upgrading_ruby_on_rails.html#upgrading-from-rails-4-1-to-rails-4-2
This commit is contained in:
Christian Bruckmayer 2016-01-25 19:00:56 +01:00
parent 57610eb39e
commit 9e9c536946
5 changed files with 110 additions and 69 deletions

View file

@ -1,7 +1,11 @@
source 'https://rubygems.org'
# as web framework
gem 'rails', '~> 4.1'
gem 'rails', '~> 4.2'
# respond_to methods have been extracted to the responders gem
# http://edgeguides.rubyonrails.org/upgrading_ruby_on_rails.html#responders
gem 'responders', '~> 2.0'
# as the database for Active Record
gem 'mysql2'
@ -138,6 +142,7 @@ group :development do
gem 'letter_opener'
# mina is a blazing fast deployment system
gem 'mina'
gem 'web-console', '~> 2.0'
end
# Use rspec and capybara as testing framework