Skip to content

Commit

Permalink
Gemspec: Specify version range for all runtime dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jirutka committed Dec 2, 2017
1 parent 9716763 commit 3444ae3
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions kosapi_client.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency 'oauth2', '~> 1.4'
spec.add_runtime_dependency 'faraday', '~> 0.9'
spec.add_runtime_dependency 'corefines', '~> 1.6'
spec.add_runtime_dependency 'escape_utils' unless RUBY_PLATFORM == 'java' # used for uri_template
spec.add_runtime_dependency 'uri_template'
spec.add_runtime_dependency 'ox' # required for correct XML namespace handling (MultiXML, oauth2)
spec.add_runtime_dependency 'escape_utils', '~> 1.0' unless RUBY_PLATFORM == 'java' # used for uri_template
spec.add_runtime_dependency 'uri_template', '~> 0.7.0'
# Required for correct XML namespace handling (MultiXML, oauth2).
spec.add_runtime_dependency 'ox', '~> 2.1'
end

0 comments on commit 3444ae3

Please sign in to comment.