summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Duffield <tom@chef.io>2021-09-02 12:35:40 -0500
committerGitHub <noreply@github.com>2021-09-02 12:35:40 -0500
commit06a81fba6751e81d95e16091ddabc77a3e79c134 (patch)
treeabd78f25f5e7ffc35d3b3a0443313aee66ba84ae
parent7c1a49b847f7b2aa978917b6f57fecf84855a2c4 (diff)
parent376acec33e79ce2385822812cc418753452bef29 (diff)
downloadwmi-lite-06a81fba6751e81d95e16091ddabc77a3e79c134.tar.gz
Merge pull request #15 from chef/bundler_deprecated_warning
Replace deprecated --without flag with bundle config
-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