From 0bfb527894a6364d8a85062fa5ce65458008249a Mon Sep 17 00:00:00 2001 From: jayashri garud Date: Mon, 23 Aug 2021 18:09:44 +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 07a63ed..3869445 100644 --- a/.expeditor/verify.pipeline.yml +++ b/.expeditor/verify.pipeline.yml @@ -51,7 +51,8 @@ steps: - label: run-specs-windows command: - bundle config --local path vendor/bundle - - 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 79b7cddc2ebf0ff42c540f9942b47f695327db3b Mon Sep 17 00:00:00 2001 From: jayashri garud Date: Fri, 27 Aug 2021 10:11:20 +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 604b8ae..2a4a911 100755 --- a/Gemfile +++ b/Gemfile @@ -9,6 +9,7 @@ group :test do gem "cucumber", "< 5" # remove the version pin when we drop Ruby 2.4 support gem "rake" gem "rspec", "~> 3.7" + 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