Loosen addressable version pin

The version of addressable that was pinned in the gemspec was
too new and conflicted with some of chef's dependencies. Loosening
it will allow us to include InSpec in the chef omnibus packages.

Signed-off-by: Adam Leff <adam@leff.co>
This commit is contained in:
Adam Leff 2017-04-04 14:51:19 -04:00
parent c5ad8972ec
commit 39c05765ff
No known key found for this signature in database
GPG key ID: 7A5136DE1C1112F8

View file

@ -41,5 +41,5 @@ Gem::Specification.new do |spec|
spec.add_dependency 'parallel', '~> 1.9'
spec.add_dependency 'faraday', '>=0.9.0'
spec.add_dependency 'toml', '~> 0.1'
spec.add_dependency 'addressable', '~> 2.5'
spec.add_dependency 'addressable', '~> 2.4'
end