From 983ec77ca60573121c6517598c51fcbed90d29fe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Jan 2026 23:08:34 +0000 Subject: [PATCH 1/2] Update rubocop-rspec requirement from ~> 3.8.0 to ~> 3.9.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.8.0...v3.9.0) --- updated-dependencies: - dependency-name: rubocop-rspec dependency-version: 3.9.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] --- publify_textfilter_code.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/publify_textfilter_code.gemspec b/publify_textfilter_code.gemspec index 9a892c2..f75c905 100644 --- a/publify_textfilter_code.gemspec +++ b/publify_textfilter_code.gemspec @@ -29,7 +29,7 @@ Gem::Specification.new do |s| s.add_development_dependency "rubocop-factory_bot", "~> 2.28.0" s.add_development_dependency "rubocop-performance", "~> 1.26.1" s.add_development_dependency "rubocop-rails", "~> 2.34.3" - s.add_development_dependency "rubocop-rspec", "~> 3.8.0" + s.add_development_dependency "rubocop-rspec", "~> 3.9.0" s.add_development_dependency "rubocop-rspec_rails", "~> 2.32.0" s.add_development_dependency "simplecov", "~> 0.22.0" s.add_development_dependency "sqlite3", "~> 1.4" From 38b8cc64d86b1d6fde0ccdb1aa00640f951585d8 Mon Sep 17 00:00:00 2001 From: Matijs van Zuijlen Date: Sat, 9 May 2026 13:13:11 +0200 Subject: [PATCH 2/2] Fix RSpec/Output offense --- spec/rails_helper.rb | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/spec/rails_helper.rb b/spec/rails_helper.rb index 487fc6f..d831857 100644 --- a/spec/rails_helper.rb +++ b/spec/rails_helper.rb @@ -26,12 +26,7 @@ # Checks for pending migrations and applies them before tests are run. # If you are not using ActiveRecord, you can remove these lines. -begin - ActiveRecord::Migration.maintain_test_schema! -rescue ActiveRecord::PendingMigrationError => e - puts e.to_s.strip - exit 1 -end +ActiveRecord::Migration.maintain_test_schema! RSpec.configure do |config| # Remove this line if you're not using ActiveRecord or ActiveRecord fixtures