Downgrade faraday, because Ruby gems

We have unsolvable bundle conflicts in our Rails app with manifique,
because some high-profile gems still depends on old-af faraday versions
and explicitly forbid newer ones.
This commit is contained in:
2018-07-04 08:16:49 +02:00
parent 25d038a0de
commit 909ff31b12
2 changed files with 4 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
spec.add_development_dependency "guard", "~> 2.14.2"
spec.add_development_dependency "guard-rspec", "~> 4.7.3"
spec.add_runtime_dependency "faraday", "~> 0.15.2"
spec.add_runtime_dependency "faraday", "~> 0.9.2", "< 0.10.0"
spec.add_runtime_dependency "faraday_middleware", "~> 0.12.2"
spec.add_runtime_dependency "nokogiri", "~> 1.8"
spec.add_runtime_dependency "nitlink", "~> 1.1"