mirror of
https://github.com/inspec/inspec
synced 2024-11-22 12:43:07 +00:00
Allow Thor 1.x versions to be used
Thor 1.0 drops support for Ruby 1.8 and 1.9. We should loosen this dep to allow the 1.x series since bug fixes are occuring there now. Signed-off-by: Tim Smith <tsmith@chef.io>
This commit is contained in:
parent
6b9c920ce6
commit
acad3d473d
2 changed files with 2 additions and 2 deletions
|
@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
|
|||
spec.add_dependency "train-core", "~> 3.0"
|
||||
spec.add_dependency "chef-telemetry", "~> 1.0"
|
||||
spec.add_dependency "license-acceptance", ">= 0.2.13", "< 2.0"
|
||||
spec.add_dependency "thor", "~> 0.20"
|
||||
spec.add_dependency "thor", ">= 0.20", "< 2.0"
|
||||
spec.add_dependency "json-schema", "~> 2.8"
|
||||
spec.add_dependency "method_source", "~> 0.8"
|
||||
spec.add_dependency "rubyzip", "~> 1.1"
|
||||
|
|
|
@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
|
|||
# Implementation dependencies
|
||||
spec.add_dependency "chef-telemetry", "~> 1.0"
|
||||
spec.add_dependency "license-acceptance", ">= 0.2.13", "< 2.0"
|
||||
spec.add_dependency "thor", "~> 0.20"
|
||||
spec.add_dependency "thor", ">= 0.20", "< 2.0"
|
||||
spec.add_dependency "json-schema", "~> 2.8"
|
||||
spec.add_dependency "method_source", "~> 0.8"
|
||||
spec.add_dependency "rubyzip", "~> 1.2", ">= 1.2.2"
|
||||
|
|
Loading…
Reference in a new issue