Fix rake version incompatibility with jruby-18mode by downgrading to 10.4.2

See: https://github.com/bundler/bundler/issues/4586
This commit is contained in:
Marc Siegel 2016-05-18 11:31:17 -04:00
parent e18fbff18b
commit 4fd728e657
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ Gem::Specification.new do |s|
s.required_ruby_version = '>= 1.8.7'
# Run rspec tests from rake
s.add_development_dependency 'rake', '~> 10.5.0' if on_less_than_1_9_3? # Pin compatible rake on old rubies, see: https://github.com/travis-ci/travis.rb/issues/380
s.add_development_dependency 'rake', '~> 10.4.2' if on_less_than_1_9_3? # Pin compatible rake on old rubies, see: https://github.com/travis-ci/travis.rb/issues/380
s.add_development_dependency 'rake' unless on_less_than_1_9_3?
s.add_development_dependency 'rspec', '~> 3.0.0'