Skip to content

Commit

Permalink
Fix faraday on ruby 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
kjg committed Dec 22, 2016
1 parent 0a190fc commit 4cff48b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion api_auth.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ Gem::Specification.new do |s|
s.add_development_dependency 'rest-client', '~> 1.6.0'
s.add_development_dependency 'curb', '~> 0.8.1'
s.add_development_dependency 'httpi'
s.add_development_dependency 'faraday'
faraday_version = RUBY_VERSION == '1.8.7' ? '< 0.10' : '>= 0.10'
s.add_development_dependency 'faraday', faraday_version
s.add_development_dependency 'multipart-post', '~> 2.0'

s.files = `git ls-files`.split("\n")
Expand Down

0 comments on commit 4cff48b

Please sign in to comment.