From 91baf591ffbe76be218957ba9f87aaba1aa11513 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Aug 2024 11:25:30 +0900 Subject: [PATCH] Update rubocop requirement from ~> 1.64.1 to ~> 1.65.0 in the rubocop-dependencies group (#218) * Update rubocop requirement from ~> 1.64.1 to ~> 1.65.0 Updates the requirements on [rubocop](https://github.com/rubocop/rubocop) to permit the latest version. Updates `rubocop` to 1.65.0 - [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.64.1...v1.65.0) --- updated-dependencies: - dependency-name: rubocop dependency-type: direct:development dependency-group: rubocop-dependencies ... Signed-off-by: dependabot[bot] * `bundle exec rubocop --autocorrect` --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Kenichi Kamiya --- Gemfile | 2 +- rspec-matchers-power_assert_matchers.gemspec | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile b/Gemfile index d699f69..08cf6ce 100644 --- a/Gemfile +++ b/Gemfile @@ -10,7 +10,7 @@ group :development, :test do end group :development do - gem 'rubocop', '~> 1.64.1', require: false + gem 'rubocop', '~> 1.65.0', require: false gem 'rubocop-rake', '~> 0.6.0', require: false # rubocop-rspec: Intentional ignored end diff --git a/rspec-matchers-power_assert_matchers.gemspec b/rspec-matchers-power_assert_matchers.gemspec index dd263aa..7eedeb1 100644 --- a/rspec-matchers-power_assert_matchers.gemspec +++ b/rspec-matchers-power_assert_matchers.gemspec @@ -21,9 +21,9 @@ Gem::Specification.new do |gem| 'rubygems_mfa_required' => 'true' } - gem.add_runtime_dependency('rspec', '>= 3.5.0', '< 4.0') - gem.add_runtime_dependency('power_assert', '>= 2.0.3', '< 3.0') - gem.add_runtime_dependency('irb', '>= 1.4.0', '< 2.0') # To colorize + gem.add_dependency('rspec', '>= 3.5.0', '< 4.0') + gem.add_dependency('power_assert', '>= 2.0.3', '< 3.0') + gem.add_dependency('irb', '>= 1.4.0', '< 2.0') # To colorize gem.required_ruby_version = '>= 3.2'