From 979a76332a7b958243787c234309a2aa12f030d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 29 Mar 2024 17:51:06 +0000 Subject: [PATCH 1/2] Update rubocop-rspec requirement from ~> 2.27.0 to ~> 2.28.0 Updates the requirements on [rubocop-rspec](https://github.com/rubocop/rubocop-rspec) to permit the latest version. - [Release notes](https://github.com/rubocop/rubocop-rspec/releases) - [Changelog](https://github.com/rubocop/rubocop-rspec/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop-rspec/compare/v2.27.0...v2.28.0) --- updated-dependencies: - dependency-name: rubocop-rspec dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index ef1c2f56c..53909914c 100644 --- a/Gemfile +++ b/Gemfile @@ -16,7 +16,7 @@ group :development do gem 'rspec-benchmark', '~> 0.6.0' gem 'rubocop', '~> 1.62.0' gem 'rubocop-performance', '~> 1.20.0' - gem 'rubocop-rspec', '~> 2.27.0' + gem 'rubocop-rspec', '~> 2.28.0' gem 'simplecov', '>= 0.18.0', '< 0.23.0' gem 'yard', '~> 0.9.5' From dd6238896b8bc346ce5eda0cbe1bdc308d7b0cc8 Mon Sep 17 00:00:00 2001 From: Matijs van Zuijlen Date: Sun, 31 Mar 2024 12:11:22 +0200 Subject: [PATCH 2/2] Prevent unrecognized cop error in rubocop-rspec-rails default config See https://github.com/rubocop/rubocop-rspec_rails/pull/14 --- Gemfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Gemfile b/Gemfile index 53909914c..2fd78a599 100644 --- a/Gemfile +++ b/Gemfile @@ -17,6 +17,7 @@ group :development do gem 'rubocop', '~> 1.62.0' gem 'rubocop-performance', '~> 1.20.0' gem 'rubocop-rspec', '~> 2.28.0' + gem 'rubocop-rspec_rails', '~> 2.28.2' gem 'simplecov', '>= 0.18.0', '< 0.23.0' gem 'yard', '~> 0.9.5'