mirror of
https://github.com/inspec/inspec
synced 2024-11-22 12:43:07 +00:00
Thor recent release 1.3.0 has changes related to aliases(https://github.com/rails/thor/pull/800) which started breaking the test. Till we find if recent release is stable and don't break any functionality we are pinning thor to < 1.3.0 (#6818)
Signed-off-by: Vasu1105 <vasundhara.jagdale@progress.com>
This commit is contained in:
parent
a7afac0852
commit
ffb1e30d6e
1 changed files with 3 additions and 1 deletions
|
@ -25,7 +25,9 @@ Gem::Specification.new do |spec|
|
||||||
# Implementation dependencies
|
# Implementation dependencies
|
||||||
spec.add_dependency "chef-telemetry", "~> 1.0", ">= 1.0.8" # 1.0.8+ removes the http dep
|
spec.add_dependency "chef-telemetry", "~> 1.0", ">= 1.0.8" # 1.0.8+ removes the http dep
|
||||||
spec.add_dependency "license-acceptance", ">= 0.2.13", "< 3.0"
|
spec.add_dependency "license-acceptance", ">= 0.2.13", "< 3.0"
|
||||||
spec.add_dependency "thor", ">= 0.20", "< 2.0"
|
# TODO: We should remove the thor pinning in next upcoming releases currently it's breaking our unit test in cli_args_test for aliases due to
|
||||||
|
# recent changes made in thor library REF: https://github.com/rails/thor/releases/tag/v1.3.0 & https://github.com/rails/thor/pull/800
|
||||||
|
spec.add_dependency "thor", ">= 0.20", "< 1.3.0"
|
||||||
spec.add_dependency "method_source", ">= 0.8", "< 2.0"
|
spec.add_dependency "method_source", ">= 0.8", "< 2.0"
|
||||||
spec.add_dependency "rubyzip", ">= 1.2.2", "< 3.0"
|
spec.add_dependency "rubyzip", ">= 1.2.2", "< 3.0"
|
||||||
spec.add_dependency "rspec", ">= 3.9", "<= 3.13"
|
spec.add_dependency "rspec", ">= 3.9", "<= 3.13"
|
||||||
|
|
Loading…
Reference in a new issue