From ae477a1ebf20be64110981d986bbbdb131cf8c82 Mon Sep 17 00:00:00 2001 From: jayashri garud Date: Wed, 1 Sep 2021 17:36:11 +0530 Subject: Replace deprecated --without flag with bundle config Signed-off-by: jayashri garud --- .expeditor/verify.pipeline.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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: -- cgit v1.2.1 From 9b79e5a7ec5139394c8b7f0b5c49b4c5a3f9f62f Mon Sep 17 00:00:00 2001 From: jayashri garud Date: Wed, 1 Sep 2021 17:45:46 +0530 Subject: Remove pry-stack_explorer dependency Signed-off-by: jayashri garud --- Gemfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Gemfile b/Gemfile index 4c4d350..b90479a 100644 --- a/Gemfile +++ b/Gemfile @@ -17,7 +17,6 @@ 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" end -- cgit v1.2.1 From 5cd81aed994f6df06cc0125fde754fb564e73fda Mon Sep 17 00:00:00 2001 From: jayashri garud Date: Wed, 1 Sep 2021 17:49:42 +0530 Subject: pin docile to 1.3.5 Signed-off-by: jayashri garud --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index b90479a..57a3601 100644 --- a/Gemfile +++ b/Gemfile @@ -11,6 +11,7 @@ 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 -- cgit v1.2.1 From 376acec33e79ce2385822812cc418753452bef29 Mon Sep 17 00:00:00 2001 From: jayashri garud Date: Wed, 1 Sep 2021 17:56:34 +0530 Subject: pin simplecov to 0.18.5 Signed-off-by: jayashri garud --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 57a3601..9307af8 100644 --- a/Gemfile +++ b/Gemfile @@ -19,5 +19,5 @@ group :debug do gem "pry" gem "pry-byebug" gem "rb-readline" - gem "simplecov", "~> 0.9" + gem "simplecov", "~> 0.18.5" # pin until we drop ruby support 2.4 end -- cgit v1.2.1