From 679345753b235d8cddd96e4bb94d06da067ef02b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Nov 2025 16:03:00 +0000 Subject: [PATCH 1/2] Update rubocop-rspec requirement from ~> 3.7.0 to ~> 3.8.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/v3.7.0...v3.8.0) --- updated-dependencies: - dependency-name: rubocop-rspec dependency-version: 3.8.0 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 ebe7a0e8..ac8b65ae 100644 --- a/Gemfile +++ b/Gemfile @@ -10,5 +10,5 @@ group :development do gem 'rubocop', '~> 1.81.0' gem 'rubocop-performance', '~> 1.26.0' gem 'rubocop-rake', '~> 0.7.1' - gem 'rubocop-rspec', '~> 3.7.0' + gem 'rubocop-rspec', '~> 3.8.0' end From b5166c793c34a34c798623f361cf21272482517a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=AA=E3=81=A4=E3=81=8D?= Date: Tue, 18 Nov 2025 09:53:52 +0800 Subject: [PATCH 2/2] Disable RSpec/LeakyLocalVariable cop --- .rubocop.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index e06f38de..a0422a18 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -18,6 +18,9 @@ Metrics: RSpec/ExampleLength: Enabled: false +RSpec/LeakyLocalVariable: + Enabled: false + RSpec/MultipleExpectations: Enabled: false