Skip to content

Commit 2b4ebbb

Browse files
committed
Upgrade rubocop + rubocop plugins
1 parent 4eb9f0b commit 2b4ebbb

Some content is hidden

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

43 files changed

+231
-119
lines changed

.rubocop.yml

+6-1
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

@@ -195,3 +197,6 @@ Style/StringConcatenation:
195197
# performance implications. Double quotes are slightly easier to read.
196198
Style/StringLiterals:
197199
EnforcedStyle: double_quotes
200+
201+
Gemspec/RequireMFA:
202+
Enabled: false

.rubocop_todo.yml

+113-5
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,115 @@
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 17:33:57 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.
9+
# Offense count: 23
10+
# Configuration parameters: EnforcedStyle, AllowedGems, Include.
11+
# SupportedStyles: Gemfile, gems.rb, gemspec
12+
# Include: **/*.gemspec, **/Gemfile, **/gems.rb
13+
Gemspec/DevelopmentDependencies:
14+
Exclude:
15+
- 'paper_trail.gemspec'
16+
17+
# Offense count: 1
18+
Performance/MapMethodChain:
19+
Exclude:
20+
- 'spec/paper_trail/version_limit_spec.rb'
21+
22+
# Offense count: 48
23+
# This cop supports unsafe autocorrection (--autocorrect-all).
24+
RSpec/BeEq:
25+
Exclude:
26+
- 'spec/controllers/articles_controller_spec.rb'
27+
- 'spec/controllers/widgets_controller_spec.rb'
28+
- 'spec/models/animal_spec.rb'
29+
- 'spec/models/cat_spec.rb'
30+
- 'spec/models/person_spec.rb'
31+
- 'spec/models/plant_spec.rb'
32+
- 'spec/models/widget_spec.rb'
33+
- 'spec/paper_trail/cleaner_spec.rb'
34+
- 'spec/paper_trail/events/base_spec.rb'
35+
- 'spec/paper_trail/model_config_spec.rb'
36+
- 'spec/paper_trail/request_spec.rb'
37+
- 'spec/paper_trail/serializers/json_spec.rb'
38+
- 'spec/paper_trail/serializers/yaml_spec.rb'
39+
- 'spec/paper_trail_spec.rb'
40+
41+
# Offense count: 5
42+
# This cop supports unsafe autocorrection (--autocorrect-all).
43+
# Configuration parameters: SkipBlocks, EnforcedStyle.
44+
# SupportedStyles: described_class, explicit
45+
RSpec/DescribedClass:
46+
Exclude:
47+
- 'spec/models/management_spec.rb'
48+
- 'spec/models/song_spec.rb'
49+
50+
# Offense count: 1
51+
# This cop supports safe autocorrection (--autocorrect).
52+
# Configuration parameters: CustomTransform, IgnoredWords, DisallowedExamples.
53+
# DisallowedExamples: works
54+
RSpec/ExampleWording:
55+
Exclude:
56+
- 'spec/models/song_spec.rb'
57+
58+
# Offense count: 2
59+
# This cop supports unsafe autocorrection (--autocorrect-all).
60+
# Configuration parameters: EnforcedStyle.
61+
# SupportedStyles: method_call, block
62+
RSpec/ExpectChange:
63+
Exclude:
64+
- 'spec/models/article_spec.rb'
65+
- 'spec/models/not_on_update_spec.rb'
66+
67+
# Offense count: 5
68+
# Configuration parameters: AllowedPatterns.
69+
# AllowedPatterns: ^expect_, ^assert_
70+
RSpec/NoExpectationExample:
71+
Exclude:
72+
- 'spec/models/joined_version_spec.rb'
73+
- 'spec/models/widget_spec.rb'
74+
75+
# Offense count: 39
76+
# This cop supports unsafe autocorrection (--autocorrect-all).
77+
# Configuration parameters: Inferences.
78+
RSpec/Rails/InferredSpecType:
79+
Enabled: false
80+
81+
# Offense count: 6
82+
# This cop supports unsafe autocorrection (--autocorrect-all).
83+
# Configuration parameters: EnforcedStyle.
84+
# SupportedStyles: constant, string
85+
RSpec/VerifiedDoubleReference:
86+
Exclude:
87+
- 'spec/models/version_spec.rb'
88+
- 'spec/models/widget_spec.rb'
89+
- 'spec/support/shared_examples/queries.rb'
90+
91+
# Offense count: 1
92+
# This cop supports unsafe autocorrection (--autocorrect-all).
93+
Rails/ActiveSupportOnLoad:
94+
Exclude:
95+
- 'lib/paper_trail/frameworks/active_record.rb'
96+
97+
# Offense count: 1
98+
# This cop supports unsafe autocorrection (--autocorrect-all).
99+
Rails/ApplicationRecord:
100+
Exclude:
101+
- 'lib/paper_trail/frameworks/active_record/models/paper_trail/version.rb'
102+
103+
# Offense count: 1
104+
# This cop supports unsafe autocorrection (--autocorrect-all).
105+
# Configuration parameters: AllowedReceivers.
106+
# AllowedReceivers: ActionMailer::Preview, ActiveSupport::TimeZone
107+
Rails/RedundantActiveRecordAllMethod:
108+
Exclude:
109+
- 'spec/paper_trail/cleaner_spec.rb'
110+
12111
# Offense count: 13
13-
# Cop supports --auto-correct.
112+
# This cop supports unsafe autocorrection (--autocorrect-all).
14113
Security/YAMLLoad:
15114
Exclude:
16115
- 'lib/paper_trail/serializers/yaml.rb'
@@ -21,3 +120,12 @@ Security/YAMLLoad:
21120
- 'spec/models/version_spec.rb'
22121
- 'spec/paper_trail/events/destroy_spec.rb'
23122
- 'spec/paper_trail/serializer_spec.rb'
123+
124+
# Offense count: 4
125+
# This cop supports unsafe autocorrection (--autocorrect-all).
126+
Style/ConcatArrayLiterals:
127+
Exclude:
128+
- 'lib/paper_trail/queries/versions/where_object.rb'
129+
- 'lib/paper_trail/queries/versions/where_object_changes.rb'
130+
- 'lib/paper_trail/queries/versions/where_object_changes_from.rb'
131+
- 'lib/paper_trail/queries/versions/where_object_changes_to.rb'

Rakefile

+10-10
Original file line numberDiff line numberDiff line change
@@ -8,40 +8,40 @@ Bundler::GemHelper.install_tasks
88

99
desc "Copy the database.DB.yml per ENV['DB']"
1010
task :install_database_yml do
11-
puts format("installing database.yml for %s", ENV["DB"])
11+
puts format("installing database.yml for %s", ENV.fetch("DB", nil))
1212

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(
19-
"spec/dummy_app/config/database.#{ENV['DB']}.yml",
19+
"spec/dummy_app/config/database.#{ENV.fetch('DB', nil)}.yml",
2020
"spec/dummy_app/config/database.yml"
2121
)
2222
end
2323

2424
desc "Delete generated files and databases"
2525
task :clean do
26-
puts format("dropping %s database", ENV["DB"])
27-
case ENV["DB"]
26+
puts format("dropping %s database", ENV.fetch("DB", nil))
27+
case ENV.fetch("DB", nil)
2828
when "mysql"
2929
# TODO: only works locally. doesn't respect database.yml
3030
system "mysqladmin drop -f paper_trail_test > /dev/null 2>&1"
3131
when "postgres"
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
37-
raise "Don't know how to clean specified RDBMS: #{ENV['DB']}"
37+
raise "Don't know how to clean specified RDBMS: #{ENV.fetch('DB', nil)}"
3838
end
3939
end
4040

4141
desc "Create the database."
4242
task :create_db do
43-
puts format("creating %s database", ENV["DB"])
44-
case ENV["DB"]
43+
puts format("creating %s database", ENV.fetch("DB", nil))
44+
case ENV.fetch("DB", nil)
4545
when "mysql"
4646
# TODO: only works locally. doesn't respect database.yml
4747
system "mysqladmin create paper_trail_test"
@@ -52,7 +52,7 @@ task :create_db do
5252
# noop. test.sqlite3 will be created when migration happens
5353
nil
5454
else
55-
raise "Don't know how to create specified DB: #{ENV['DB']}"
55+
raise "Don't know how to create specified DB: #{ENV.fetch('DB', nil)}"
5656
end
5757
end
5858

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/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

0 commit comments

Comments
 (0)