1
0
Fork 0
mirror of https://github.com/awesome-print/awesome_print synced 2023-03-27 23:22:34 -04:00

Merge pull request #252 from gerrywastaken/lock-down-activesupport-for-ruby-19-nobrainer-tests

Lock activesupport for our 1.9.3 build
This commit is contained in:
Gerry 2016-07-01 15:40:13 +10:00 committed by GitHub
commit 056e5c7263
2 changed files with 5 additions and 0 deletions

View file

@ -49,4 +49,8 @@ end
appraise 'nobrainer' do
gem 'nobrainer'
# When activesupport 5 was released, it required ruby 2.2.2 as a minimum.
# Locking this down to 4.2.6 allows our Ruby 1.9 tests to keep working.
gem 'activesupport', '4.2.6', :platforms => :ruby_19
end

View file

@ -3,5 +3,6 @@
source "https://rubygems.org"
gem "nobrainer"
gem "activesupport", "4.2.6", :platforms => :ruby_19
gemspec :path => "../"