From 8abc262309dc1533ee71be61dc55d3c2644ca10a Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sun, 21 Jun 2026 09:56:52 +0000 Subject: [PATCH 1/2] chore(deps): update dependency rubocop-config to v15 --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index e05b95d..d0d85d9 100644 --- a/Gemfile +++ b/Gemfile @@ -12,7 +12,7 @@ gem 'rspec-rails' gem 'simplecov', require: false gem 'simplecov-cobertura', require: false -gem 'rubocop-config', github: 'jgraichen/rubocop-config', tag: 'v14', require: false +gem 'rubocop-config', github: 'jgraichen/rubocop-config', tag: 'v15', require: false gem 'rails' gem 'sqlite3' From a6e44b0fa4a3d126388e9c22418527528f2ee91a Mon Sep 17 00:00:00 2001 From: Jan Graichen Date: Sun, 21 Jun 2026 14:56:03 +0200 Subject: [PATCH 2/2] fix: linter warnings in script/spec files We can safely ignore multiple-definition warnings here. --- .rubocop.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.rubocop.yml b/.rubocop.yml index 95ad848..b0d8dba 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -15,3 +15,8 @@ Layout/LineLength: RSpec/MultipleMemoizedHelpers: Max: 15 + +Style/OneClassPerFile: + Exclude: + - scripts/**/* + - spec/**/*