summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.expeditor/verify.pipeline.yml3
-rw-r--r--Gemfile4
2 files changed, 4 insertions, 3 deletions
diff --git a/.expeditor/verify.pipeline.yml b/.expeditor/verify.pipeline.yml
index 9111303..3fd88d2 100644
--- a/.expeditor/verify.pipeline.yml
+++ b/.expeditor/verify.pipeline.yml
@@ -39,7 +39,8 @@ steps:
image: ruby:2.7-buster
- label: run-specs-windows
command:
- - bundle install --jobs=7 --retry=3 --without docs debug
+ - bundle config set --local without docs debug
+ - bundle install --jobs=7 --retry=3
- bundle exec rake spec
expeditor:
executor:
diff --git a/Gemfile b/Gemfile
index 4c4d350..9307af8 100644
--- a/Gemfile
+++ b/Gemfile
@@ -11,13 +11,13 @@ end
group :test do
gem "chefstyle", "= 1.2.0"
gem "rspec", "~> 3.1"
+ gem "docile", "~> 1.3.5" # pin until we drop ruby support 2.4
gem "rake"
end
group :debug do
gem "pry"
gem "pry-byebug"
- gem "pry-stack_explorer", "~> 0.4.0" # pin until we drop ruby < 2.6
gem "rb-readline"
- gem "simplecov", "~> 0.9"
+ gem "simplecov", "~> 0.18.5" # pin until we drop ruby support 2.4
end