Updated rails to 4.2.8

Rails update to 4.2.8 is necessary to get rid of Bignum and Fixnum warnings.
Ruby had two visible Integer classes: Fixnum and Bignum.
Ruby 2.4 unifies them into Integer. All C extensions which touch the Fixnum or Bignum class need to be fixed.
This commit is contained in:
rahul 2017-07-14 01:48:47 +05:30
parent 7f28ff3ac9
commit a6f9fdbb43
2 changed files with 49 additions and 47 deletions

View file

@ -6,7 +6,7 @@ if Gem::Version.new(Bundler::VERSION) < Gem::Version.new('1.8.4')
end
# as web framework
gem 'rails', '~> 4.2'
gem 'rails', '~> 4.2.8'
# enables serving assets in production and setting your logger to standard out
# both of which are required to run an application on a twelve-factor provider