SECURITY: Upgrading Rails version to 5.2.2.1

This commit is contained in:
Roman Rizzi
2019-03-13 16:24:54 -03:00
parent 18ff790e79
commit bd8e46a9c1
2 changed files with 34 additions and 34 deletions

14
Gemfile
View File

@@ -14,13 +14,13 @@ if rails_master?
else
# until rubygems gives us optional dependencies we are stuck with this
# bundle update actionmailer actionpack actionview activemodel activerecord activesupport railties
gem 'actionmailer', '5.2.2'
gem 'actionpack', '5.2.2'
gem 'actionview', '5.2.2'
gem 'activemodel', '5.2.2'
gem 'activerecord', '5.2.2'
gem 'activesupport', '5.2.2'
gem 'railties', '5.2.2'
gem 'actionmailer', '5.2.2.1'
gem 'actionpack', '5.2.2.1'
gem 'actionview', '5.2.2.1'
gem 'activemodel', '5.2.2.1'
gem 'activerecord', '5.2.2.1'
gem 'activesupport', '5.2.2.1'
gem 'railties', '5.2.2.1'
gem 'sprockets-rails'
end