mirror of
https://github.com/openSUSE/osem.git
synced 2026-08-13 19:54:02 +00:00
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:
parent
57610eb39e
commit
9e9c536946
5 changed files with 110 additions and 69 deletions
7
Gemfile
7
Gemfile
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue