mirror of
https://github.com/ms-ati/docile
synced 2023-03-27 23:21:52 -04:00
Fix tests on 1.8 via pinned dependency
Last version of gem `rest-client` to support 1.8.7 is 1.6.8, as documented on their history.md
This commit is contained in:
parent
1062513260
commit
04936bce24
1 changed files with 2 additions and 1 deletions
|
@ -26,7 +26,8 @@ Gem::Specification.new do |s|
|
||||||
s.add_development_dependency 'rspec', '~> 3.0.0'
|
s.add_development_dependency 'rspec', '~> 3.0.0'
|
||||||
|
|
||||||
# NOTE: needed for Travis builds on 1.8, but can't yet reproduce failure locally
|
# NOTE: needed for Travis builds on 1.8, but can't yet reproduce failure locally
|
||||||
s.add_development_dependency 'mime-types', '~> 1.25.1' if on_1_8?
|
s.add_development_dependency 'mime-types' , '~> 1.25.1' if on_1_8?
|
||||||
|
s.add_development_dependency 'rest-client', '~> 1.6.8' if on_1_8?
|
||||||
|
|
||||||
# To limit needed compatibility with versions of dependencies, only configure
|
# To limit needed compatibility with versions of dependencies, only configure
|
||||||
# yard doc generation when *not* on Travis, JRuby, or 1.8
|
# yard doc generation when *not* on Travis, JRuby, or 1.8
|
||||||
|
|
Loading…
Reference in a new issue