Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Commit

Permalink
Code changes to handle nokogiri gem version changes (#749)
Browse files Browse the repository at this point in the history
* Code changes to handle nokogiri gem version changes
  • Loading branch information
sarangan12 authored Apr 13, 2017
1 parent 142abee commit 4c0d4c5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion azure.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,11 @@ Gem::Specification.new do |s|
s.add_runtime_dependency('faraday', '~> 0.9')
s.add_runtime_dependency('faraday_middleware', '~> 0.10')
s.add_runtime_dependency('mime-types', ['>= 1', '< 4.0']) # vagrant-share and other stuff relies on 1
s.add_runtime_dependency('nokogiri', '~> 1.6')
if RUBY_VERSION < "2.1.0"
s.add_runtime_dependency('nokogiri', '~> 1.6.0')
else
s.add_runtime_dependency('nokogiri', '~> 1.7')
end
s.add_runtime_dependency('systemu', '~> 2.6')
s.add_runtime_dependency('thor', '~> 0.19')

Expand Down

0 comments on commit 4c0d4c5

Please sign in to comment.