mirror of
https://github.com/ms-ati/docile
synced 2023-03-27 23:21:52 -04:00
Prevent Rake 11.x from breaking RSpec 3.0.x
See http://stackoverflow.com/questions/35893584/nomethoderror-undefined-method-last-comment-after-upgrading-to-rake-11
This commit is contained in:
parent
53315abee7
commit
26f05c848e
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ Gem::Specification.new do |s|
|
|||
|
||||
# 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' unless on_less_than_1_9_3?
|
||||
s.add_development_dependency 'rake', '< 11.0' unless on_less_than_1_9_3? # See http://stackoverflow.com/questions/35893584/nomethoderror-undefined-method-last-comment-after-upgrading-to-rake-11
|
||||
s.add_development_dependency 'rspec', '~> 3.0.0'
|
||||
|
||||
# NOTE: needed for Travis builds on 1.8, but can't yet reproduce failure locally
|
||||
|
|
Loading…
Reference in a new issue