From be9358b941bc51f7798fe0ad1dab078b5b1f16b4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Mar 2025 11:04:29 +0000 Subject: [PATCH 1/2] chore: Update rubocop requirement from 1.74.0 to 1.75.1 Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version. - [Release notes](https://github.com/rubocop/rubocop/releases) - [Changelog](https://github.com/rubocop/rubocop/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop/rubocop/compare/v1.74.0...v1.75.1) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 259624ea..18b2e648 100644 --- a/Gemfile +++ b/Gemfile @@ -22,5 +22,5 @@ gem 'minitest', '~> 5.0' gem 'minitest-reporters', '~> 1.1' gem 'pry' gem 'rake', '~> 13.0' -gem 'rubocop', '1.74.0' +gem 'rubocop', '1.75.1' gem 'yard', '~> 0.9.11' From cf2c9e7b920aa937450bc635eba5a132d68961bb Mon Sep 17 00:00:00 2001 From: Kazuaki Matsuo Date: Sat, 29 Mar 2025 09:23:15 +0900 Subject: [PATCH 2/2] modify the rule --- .rubocop.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.rubocop.yml b/.rubocop.yml index 08e9817b..b59900a6 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,6 +1,6 @@ AllCops: TargetRubyVersion: 3.1 -Metrics/LineLength: +Layout/LineLength: Max: 128 Metrics/MethodLength: Enabled: false