Skip to content

Commit

Permalink
Bump activesupport gem to 5.x on test environment
Browse files Browse the repository at this point in the history
  • Loading branch information
camelmasa committed Jan 5, 2017
1 parent 199d816 commit e2ccf3f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Gemfile
Expand Up @@ -12,7 +12,11 @@ end

group :test do
# ActiveSupport required to test compatibility with ActiveSupport Core Extensions.
gem 'activesupport', '~> 4.x', require: false
if RUBY_VERSION.to_f >= 2.4
gem 'activesupport', '~> 5.x', require: false
else
gem 'activesupport', '~> 4.x', require: false
end
gem 'codeclimate-test-reporter', '~> 1.0', require: false
gem 'rspec-core', '~> 3.1.7'
gem 'danger-changelog', '~> 0.1.0', require: false
Expand Down

0 comments on commit e2ccf3f

Please sign in to comment.