From 5dfa38a81827df4fd3cbab130e656c8a0a1aa84c Mon Sep 17 00:00:00 2001 From: Stan Hu <stanhu@gmail.com> Date: Sun, 25 Oct 2020 15:17:54 -0700 Subject: [PATCH] Fix update-tests-metadata CI job The upgrade to Ruby v2.7.2 meant that only bundler v2 was installed by default. rspec_profiling v0.0.5 required bundler v1, but v0.0.6 relaxed the dependency to allow for bundler 2 (see https://github.com/foraker/rspec_profiling/commit/6ad1ec4e37). --- Gemfile | 2 +- Gemfile.lock | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile b/Gemfile index 213e5a86130c5..ff47974edc2a6 100644 --- a/Gemfile +++ b/Gemfile @@ -411,7 +411,7 @@ end group :test do gem 'fuubar', '~> 2.2.0' gem 'rspec-retry', '~> 0.6.1' - gem 'rspec_profiling', '~> 0.0.5' + gem 'rspec_profiling', '~> 0.0.6' gem 'rspec-parameterized', require: false gem 'capybara', '~> 3.33.0' diff --git a/Gemfile.lock b/Gemfile.lock index 027957f347199..21c36eb4c237a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1009,7 +1009,7 @@ GEM rspec-support (3.9.2) rspec_junit_formatter (0.4.1) rspec-core (>= 2, < 4, != 2.12.0) - rspec_profiling (0.0.5) + rspec_profiling (0.0.6) activerecord pg rails @@ -1467,7 +1467,7 @@ DEPENDENCIES rspec-rails (~> 4.0.0) rspec-retry (~> 0.6.1) rspec_junit_formatter - rspec_profiling (~> 0.0.5) + rspec_profiling (~> 0.0.6) rubocop (~> 0.82.0) rubocop-performance (~> 1.5.2) rubocop-rspec (~> 1.37.0) -- GitLab