Skip to content

Commit 29d6013

Browse files
authored
Upgrade rubocop + rubocop plugins (#1515)
* Upgrade rubocop + rubocop plugins * run unsafe autofix on newly added todo items * Revert "run unsafe autofix on newly added todo items" This reverts commit d80e696. * autofix RSpec/BeEq * unsafe autofix all spec issues _except_ RSpec/Rails/InferredSpecType * Revert "unsafe autofix all spec issues _except_ RSpec/Rails/InferredSpecType" This reverts commit 7448551. * autofix RSpec/DescribedClass * autofix RSpec/ExpectChange * fix RSpec/ExampleWording * fix RSpec/NoExpectationExample * autofix RSpec/Rails/InferredSpecType * Revert "autofix RSpec/Rails/InferredSpecType" This reverts commit 73da18a. * try RSpec/Rails/InferredSpecType again * reorder Gemspec/RequireMFA * fix RSpec/VerifiedDoubleReference * fix Rails/RedundantActiveRecordAllMethod * fix Gemspec/DevelopmentDependencies * Revert "fix Gemspec/DevelopmentDependencies" This reverts commit f73c2af. * disable Gemspec/DevelopmentDependencies * fix Performance/MapMethodChain * explicitly disable Security/YAMLLoad * fix Style/ConcatArrayLiterals * enable / fix -Gemspec/RequireMFA * explicitly disable Rails/ApplicationRecord * remove configuration for RSpec/Rails/InferredSpecType, add config.infer_spec_type_from_file_location! to rspec * add spaces * disable Style/FetchEnvVar * revert RSpec/BeEq changes and disable * revert / disable Rails/Delegate
1 parent 4eb9f0b commit 29d6013

File tree

79 files changed

+219
-199
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+219
-199
lines changed

.rubocop.yml

+27-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
require:
2+
- rubocop-rspec
3+
4+
plugins:
25
- rubocop-packaging
36
- rubocop-performance
47
- rubocop-rails
58
- rubocop-rake
6-
- rubocop-rspec
79

810
inherit_from: .rubocop_todo.yml
911

@@ -25,6 +27,9 @@ AllCops:
2527
# See "Lowest supported ruby version" in CONTRIBUTING.md
2628
TargetRubyVersion: 3.0
2729

30+
Gemspec/DevelopmentDependencies:
31+
Enabled: false
32+
2833
Layout/ArgumentAlignment:
2934
EnforcedStyle: with_fixed_indentation
3035

@@ -65,7 +70,7 @@ Layout/SpaceAroundOperators:
6570
# from these is of questionable value.
6671
Metrics/AbcSize:
6772
Exclude:
68-
- 'spec/dummy_app/db/migrate/*'
73+
- "spec/dummy_app/db/migrate/*"
6974

7075
# Not a useful metric compared to, e.g. `AbcSize`.
7176
Metrics/BlockLength:
@@ -115,6 +120,12 @@ Performance/CollectionLiteralInLoop:
115120
Exclude:
116121
- spec/**/*
117122

123+
Rails/ApplicationRecord:
124+
Enabled: false
125+
126+
Rails/Delegate:
127+
Enabled: false
128+
118129
# This cop only applies to app dev, not gem dev.
119130
Rails/RakeEnvironment:
120131
Enabled: false
@@ -123,6 +134,9 @@ Rails/RakeEnvironment:
123134
Rails/SkipsModelValidations:
124135
Enabled: false
125136

137+
RSpec/BeEq:
138+
Enabled: false
139+
126140
# This cop does not seem to work in rubocop-rspec 1.28.0
127141
RSpec/DescribeClass:
128142
Enabled: false
@@ -140,6 +154,12 @@ RSpec/ExampleLength:
140154
RSpec/MultipleExpectations:
141155
Enabled: false
142156

157+
# It may be possible for us to use safe_load, but we'd have to pass the
158+
# safelists, like `whitelist_classes` into our serializer, and the serializer
159+
# interface is a public API, so that would be a breaking change.
160+
Security/YAMLLoad:
161+
Enabled: false
162+
143163
# Please use semantic style, e.g. `do` when there's a side-effect, else `{}`.
144164
# The semantic style is too nuanced to lint, so the cop is disabled.
145165
Style/BlockDelimiters:
@@ -150,6 +170,9 @@ Style/BlockDelimiters:
150170
Style/DoubleNegation:
151171
Enabled: false
152172

173+
Style/FetchEnvVar:
174+
Enabled: false
175+
153176
# Avoid annotated tokens except in desperately complicated format strings.
154177
# In 99% of format strings they actually make it less readable.
155178
Style/FormatStringToken:
@@ -182,8 +205,8 @@ Style/IfUnlessModifier:
182205
# - https://github.com/bbatsov/ruby-style-guide/issues/556
183206
Style/ModuleFunction:
184207
Exclude:
185-
- 'lib/paper_trail/serializers/json.rb'
186-
- 'lib/paper_trail/serializers/yaml.rb'
208+
- "lib/paper_trail/serializers/json.rb"
209+
- "lib/paper_trail/serializers/yaml.rb"
187210

188211
# Too subtle to lint. Use `format` for multiple variables. For single variables,
189212
# use either interpolation or concatenation, whichever is easier to read.

.rubocop_todo.yml

+5-15
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,13 @@
11
# This configuration was generated by
22
# `rubocop --auto-gen-config`
3-
# on 2022-11-26 07:45:38 UTC using RuboCop version 1.22.3.
3+
# on 2025-03-31 23:04:51 UTC using RuboCop version 1.75.1.
44
# The point is for the user to remove these configuration records
55
# one by one as the offenses are removed from the code base.
66
# Note that changes in the inspected code, or installation of new
77
# versions of RuboCop, may require this file to be generated again.
88

9-
# It may be possible for us to use safe_load, but we'd have to pass the
10-
# safelists, like `whitelist_classes` into our serializer, and the serializer
11-
# interface is a public API, so that would be a breaking change.
12-
# Offense count: 13
13-
# Cop supports --auto-correct.
14-
Security/YAMLLoad:
9+
# Offense count: 1
10+
# This cop supports unsafe autocorrection (--autocorrect-all).
11+
Rails/ActiveSupportOnLoad:
1512
Exclude:
16-
- 'lib/paper_trail/serializers/yaml.rb'
17-
- 'spec/models/book_spec.rb'
18-
- 'spec/models/gadget_spec.rb'
19-
- 'spec/models/no_object_spec.rb'
20-
- 'spec/models/person_spec.rb'
21-
- 'spec/models/version_spec.rb'
22-
- 'spec/paper_trail/events/destroy_spec.rb'
23-
- 'spec/paper_trail/serializer_spec.rb'
13+
- "lib/paper_trail/frameworks/active_record.rb"

Rakefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ task :install_database_yml do
1313
# It's tempting to use `git clean` here, but this rake task will be run by
1414
# people working on changes that haven't been committed yet, so we have to
1515
# be more selective with what we delete.
16-
::FileUtils.rm("spec/dummy_app/db/database.yml", force: true)
16+
FileUtils.rm("spec/dummy_app/db/database.yml", force: true)
1717

1818
FileUtils.cp(
1919
"spec/dummy_app/config/database.#{ENV['DB']}.yml",
@@ -32,7 +32,7 @@ task :clean do
3232
# TODO: only works locally. doesn't respect database.yml
3333
system "dropdb --if-exists paper_trail_test > /dev/null 2>&1"
3434
when nil, "sqlite"
35-
::FileUtils.rm(::Dir.glob("spec/dummy_app/db/*.sqlite3"))
35+
FileUtils.rm(Dir.glob("spec/dummy_app/db/*.sqlite3"))
3636
else
3737
raise "Don't know how to clean specified RDBMS: #{ENV['DB']}"
3838
end

lib/generators/paper_trail/install/install_generator.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ class InstallGenerator < MigrationGenerator
2727
desc: "Use uuid instead of bigint for item_id type (use only if tables use UUIDs)"
2828
)
2929

30-
desc "Generates (but does not run) a migration to add a versions table." \
31-
" See section 5.c. Generators in README.md for more information."
30+
desc "Generates (but does not run) a migration to add a versions table. " \
31+
"See section 5.c. Generators in README.md for more information."
3232

3333
def create_migration_file
3434
add_paper_trail_migration(

lib/generators/paper_trail/update_item_subtype/update_item_subtype_generator.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class UpdateItemSubtypeGenerator < MigrationGenerator
88
source_root File.expand_path("templates", __dir__)
99

1010
desc(
11-
"Generates (but does not run) a migration to update item_subtype for "\
11+
"Generates (but does not run) a migration to update item_subtype for " \
1212
"STI entries in an existing versions table."
1313
)
1414

lib/paper_trail/frameworks/active_record.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Either ActiveRecord has already been loaded by the Lazy Load Hook in our
44
# Railtie, or else we load it now.
55
require "active_record"
6-
::PaperTrail::Compatibility.check_activerecord(::ActiveRecord.gem_version)
6+
PaperTrail::Compatibility.check_activerecord(ActiveRecord.gem_version)
77

88
# Now we can load the parts of PT that depend on AR.
99
require "paper_trail/has_paper_trail"

lib/paper_trail/frameworks/cucumber.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
PaperTrail.enabled = false
66
PaperTrail.request.enabled = true
77
PaperTrail.request.whodunnit = nil
8-
PaperTrail.request.controller_info = {} if defined?(::Rails)
8+
PaperTrail.request.controller_info = {} if defined?(Rails)
99
end
1010

1111
module PaperTrail

lib/paper_trail/frameworks/rspec.rb

+8-8
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@
55
require "paper_trail/frameworks/rspec/helpers"
66

77
RSpec.configure do |config|
8-
config.include ::PaperTrail::RSpec::Helpers::InstanceMethods
9-
config.extend ::PaperTrail::RSpec::Helpers::ClassMethods
8+
config.include PaperTrail::RSpec::Helpers::InstanceMethods
9+
config.extend PaperTrail::RSpec::Helpers::ClassMethods
1010

1111
config.before(:each) do
12-
::PaperTrail.enabled = false
13-
::PaperTrail.request.enabled = true
14-
::PaperTrail.request.whodunnit = nil
15-
::PaperTrail.request.controller_info = {} if defined?(::Rails) && defined?(::RSpec::Rails)
12+
PaperTrail.enabled = false
13+
PaperTrail.request.enabled = true
14+
PaperTrail.request.whodunnit = nil
15+
PaperTrail.request.controller_info = {} if defined?(Rails) && defined?(RSpec::Rails)
1616
end
1717

1818
config.before(:each, versioning: true) do
19-
::PaperTrail.enabled = true
19+
PaperTrail.enabled = true
2020
end
2121
end
2222

2323
RSpec::Matchers.define :be_versioned do
2424
# check to see if the model has `has_paper_trail` declared on it
25-
match { |actual| actual.is_a?(::PaperTrail::Model::InstanceMethods) }
25+
match { |actual| actual.is_a?(PaperTrail::Model::InstanceMethods) }
2626
end
2727

2828
RSpec::Matchers.define :have_a_version_with do |attributes|

lib/paper_trail/model_config.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module PaperTrail
44
# Configures an ActiveRecord model, mostly at application boot time, but also
55
# sometimes mid-request, with methods like enable/disable.
66
class ModelConfig
7-
E_CANNOT_RECORD_AFTER_DESTROY = <<-STR.strip_heredoc.freeze
7+
E_CANNOT_RECORD_AFTER_DESTROY = <<~STR
88
paper_trail.on_destroy(:after) is incompatible with ActiveRecord's
99
belongs_to_required_by_default. Use on_destroy(:before)
1010
or disable belongs_to_required_by_default.
@@ -49,7 +49,7 @@ def on_create
4949
def on_destroy(recording_order = "before")
5050
assert_valid_recording_order_for_on_destroy(recording_order)
5151
@model_class.send(
52-
"#{recording_order}_destroy",
52+
:"#{recording_order}_destroy",
5353
lambda do |r|
5454
return unless r.paper_trail.save_version?
5555
r.paper_trail.record_destroy(recording_order)
@@ -236,7 +236,7 @@ def setup_associations(options)
236236

237237
def setup_callbacks_from_options(options_on = [])
238238
options_on.each do |event|
239-
public_send("on_#{event}")
239+
public_send(:"on_#{event}")
240240
end
241241
end
242242

lib/paper_trail/queries/versions/where_object.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def json
3939
values = []
4040
@attributes.each do |field, value|
4141
predicates.push "object->>? = ?"
42-
values.concat([field, value.to_s])
42+
values.push(field, value.to_s)
4343
end
4444
sql = predicates.join(" and ")
4545
@version_model_class.where(sql, *values)

lib/paper_trail/queries/versions/where_object_changes.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def json
5353
predicates.push(
5454
"((object_changes->>? ILIKE ?) OR (object_changes->>? ILIKE ?))"
5555
)
56-
values.concat([field, "[#{value.to_json},%", field, "[%,#{value.to_json}]%"])
56+
values.push(field, "[#{value.to_json},%", field, "[%,#{value.to_json}]%")
5757
end
5858
sql = predicates.join(" and ")
5959
@version_model_class.where(sql, *values)

lib/paper_trail/queries/versions/where_object_changes_from.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def json
4646
predicates.push(
4747
"(object_changes->>? ILIKE ?)"
4848
)
49-
values.concat([field, "[#{value.to_json},%"])
49+
values.push(field, "[#{value.to_json},%")
5050
end
5151
sql = predicates.join(" and ")
5252
@version_model_class.where(sql, *values)

lib/paper_trail/queries/versions/where_object_changes_to.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def json
4646
predicates.push(
4747
"(object_changes->>? ILIKE ?)"
4848
)
49-
values.concat([field, "[%#{value.to_json}]"])
49+
values.push(field, "[%#{value.to_json}]")
5050
end
5151
sql = predicates.join(" and ")
5252
@version_model_class.where(sql, *values)

lib/paper_trail/record_trail.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def clear_rolled_back_versions
2222
# Invoked via`after_update` callback for when a previous version is
2323
# reified and then saved.
2424
def clear_version_instance
25-
@record.send("#{@record.class.version_association_name}=", nil)
25+
@record.send(:"#{@record.class.version_association_name}=", nil)
2626
end
2727

2828
# Returns true if this instance is the current, live one;
@@ -128,7 +128,7 @@ def record_update(force:, in_after_callback:, is_touch:)
128128
def reset_timestamp_attrs_for_update_if_needed
129129
return if live?
130130
@record.send(:timestamp_attributes_for_update_in_model).each do |column|
131-
@record.send("restore_#{column}!")
131+
@record.send(:"restore_#{column}!")
132132
end
133133
end
134134

@@ -202,7 +202,7 @@ def versions_between(start_time, end_time)
202202

203203
# @api private
204204
def assign_and_reset_version_association(version)
205-
@record.send("#{@record.class.version_association_name}=", version)
205+
@record.send(:"#{@record.class.version_association_name}=", version)
206206
@record.send(@record.class.versions_association_name).reset
207207
end
208208

lib/paper_trail/reifier.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def reify(version, options)
1414
attrs = version.object_deserialized
1515
model = init_model(attrs, options, version)
1616
reify_attributes(model, version, attrs)
17-
model.send "#{model.class.version_association_name}=", version
17+
model.send :"#{model.class.version_association_name}=", version
1818
model
1919
end
2020

@@ -93,8 +93,8 @@ def init_unversioned_attrs(attrs, model)
9393
def reify_attribute(k, v, model, version)
9494
if model.has_attribute?(k)
9595
model[k.to_sym] = v
96-
elsif model.respond_to?("#{k}=")
97-
model.send("#{k}=", v)
96+
elsif model.respond_to?(:"#{k}=")
97+
model.send(:"#{k}=", v)
9898
elsif version.logger
9999
version.logger.warn(
100100
"Attribute #{k} does not exist on #{version.item_type} (Version id: #{version.id})."

lib/paper_trail/serializers/yaml.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def load(string)
2727
# recent [memory optimizations](https://github.com/paper-trail-gem/paper_trail/pull/1189),
2828
# when coming from `recordable_object_changes`, it will be a `HashWithIndifferentAccess`.
2929
def dump(object)
30-
object = object.to_hash if object.is_a?(HashWithIndifferentAccess)
30+
object = object.to_hash if object.is_a?(ActiveSupport::HashWithIndifferentAccess)
3131
::YAML.dump object
3232
end
3333

lib/paper_trail/version_concern.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ def load_changeset
320320
end
321321

322322
# First, deserialize the `object_changes` column.
323-
changes = HashWithIndifferentAccess.new(object_changes_deserialized)
323+
changes = ActiveSupport::HashWithIndifferentAccess.new(object_changes_deserialized)
324324

325325
# The next step is, perhaps unfortunately, called "de-serialization",
326326
# and appears to be responsible for custom attribute serializers. For an

paper_trail.gemspec

+10-9
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ has been destroyed.
2020
s.license = "MIT"
2121

2222
s.metadata = {
23-
"changelog_uri" => "https://github.com/paper-trail-gem/paper_trail/blob/master/CHANGELOG.md"
23+
"changelog_uri" => "https://github.com/paper-trail-gem/paper_trail/blob/master/CHANGELOG.md",
24+
"rubygems_mfa_required" => "true"
2425
}
2526

2627
# > Files included in this gem. .. Only add files you can require to this
@@ -51,7 +52,7 @@ has been destroyed.
5152

5253
# We no longer specify a maximum activerecord version.
5354
# See discussion in paper_trail/compatibility.rb
54-
s.add_dependency "activerecord", ::PaperTrail::Compatibility::ACTIVERECORD_GTE
55+
s.add_dependency "activerecord", PaperTrail::Compatibility::ACTIVERECORD_GTE
5556

5657
# PT supports request_store versions for 3 years.
5758
s.add_dependency "request_store", "~> 1.4"
@@ -73,16 +74,16 @@ has been destroyed.
7374
# For `spec/dummy_app`. Technically, we only need `actionpack` (as of 2020).
7475
# However, that might change in the future, and the advantages of specifying a
7576
# subset (e.g. actionpack only) are unclear.
76-
s.add_development_dependency "rails", ::PaperTrail::Compatibility::ACTIVERECORD_GTE
77+
s.add_development_dependency "rails", PaperTrail::Compatibility::ACTIVERECORD_GTE
7778

7879
s.add_development_dependency "rake", "~> 13.0"
7980
s.add_development_dependency "rspec-rails", "~> 6.0.3"
80-
s.add_development_dependency "rubocop", "~> 1.22.2"
81-
s.add_development_dependency "rubocop-packaging", "~> 0.5.1"
82-
s.add_development_dependency "rubocop-performance", "~> 1.11.5"
83-
s.add_development_dependency "rubocop-rails", "~> 2.12.4"
84-
s.add_development_dependency "rubocop-rake", "~> 0.6.0"
85-
s.add_development_dependency "rubocop-rspec", "~> 2.5.0"
81+
s.add_development_dependency "rubocop", "~> 1.75"
82+
s.add_development_dependency "rubocop-packaging", "~> 0.6.0"
83+
s.add_development_dependency "rubocop-performance", "~> 1.24.0"
84+
s.add_development_dependency "rubocop-rails", "~> 2.30.3"
85+
s.add_development_dependency "rubocop-rake", "~> 0.7.1"
86+
s.add_development_dependency "rubocop-rspec", "~> 2.17.0"
8687
s.add_development_dependency "simplecov", "~> 0.21.2"
8788

8889
# ## Database Adapters

spec/controllers/articles_controller_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
require "spec_helper"
44

5-
RSpec.describe ArticlesController, type: :controller do
5+
RSpec.describe ArticlesController do
66
describe "PaperTrail.request.enabled?" do
77
context "when PaperTrail.enabled? == true" do
88
before { PaperTrail.enabled = true }

0 commit comments

Comments
 (0)