From 6dc5739765aa67745a6e49df005713ec275747a0 Mon Sep 17 00:00:00 2001 From: jayashri garud Date: Mon, 23 Aug 2021 17:58:40 +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 855a197..d103ee1 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -39,7 +39,8 @@ steps: - 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 expeditor: executor: -- cgit v1.2.1 From 036d501c22dbcd5f0b9c3656cf9a97cdf14cb1da Mon Sep 17 00:00:00 2001 From: jayashri garud Date: Mon, 30 Aug 2021 18:27:43 +0530 Subject: Pin rubocop-ast to 1.4.1 Signed-off-by: jayashri garud --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 222ad82..f071fe5 100644 --- a/Gemfile +++ b/Gemfile @@ -12,6 +12,7 @@ group :test do gem "chefstyle" gem "rake" gem "rspec", "~> 3.0" + gem "rubocop-ast", "~> 1.4.1" # Drop this dependency/version when we remove ruby-2.4 support end group :debug do -- cgit v1.2.1