Skip to content

Commit 3c18f4c

Browse files
author
Pierre Souchay
committed
fix(faraday): do not depend on Faraday >= 2.x as it breaks diplomat
Fix #223
1 parent 7b19d2e commit 3c18f4c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

diplomat.gemspec

+4-1
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,8 @@ Gem::Specification.new 'diplomat', Diplomat::VERSION do |spec|
2525
spec.add_development_dependency 'webmock'
2626

2727
spec.add_runtime_dependency 'deep_merge', '~> 1.2'
28-
spec.add_runtime_dependency 'faraday', '>= 0.9'
28+
29+
# See https://github.com/WeAreFarmGeek/diplomat/issues/223
30+
# For now, diplomat does not work with faraday 2.x
31+
spec.add_runtime_dependency 'faraday', '>= 0.9', '< 2.0'
2932
end

0 commit comments

Comments
 (0)