From 7fe82ae1768d648f2ee33beff8331ce88b316114 Mon Sep 17 00:00:00 2001 From: Tim Meusel Date: Fri, 17 May 2024 13:14:28 +0200 Subject: [PATCH] pin thor to 1.3.0 With thor 1.3.1 we've two failing tests: ``` Failing Scenarios: cucumber features/execute.feature:36 # Scenario: Show fail-fast default value in help cucumber features/execute.feature:44 # Scenario: Override fail-fast default value using config file ``` as a workaround to get CI green again we'r pinning to 1.3.0. I think the bug is fixed in https://github.com/rails/thor/pull/878 but not yet released. --- modulesync.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modulesync.gemspec b/modulesync.gemspec index c7aa8ca..85c1ed3 100644 --- a/modulesync.gemspec +++ b/modulesync.gemspec @@ -27,5 +27,5 @@ Gem::Specification.new do |spec| spec.add_runtime_dependency 'gitlab', '~>4.0' spec.add_runtime_dependency 'octokit', '>=4', '<9' spec.add_runtime_dependency 'puppet-blacksmith', '>= 3.0', '< 8' - spec.add_runtime_dependency 'thor' + spec.add_runtime_dependency 'thor', '1.3.0' end