Skip to content

Commit d22375a

Browse files
committed
Set rubocop TargetRubyVersion to 3.2 and autocorrect
1 parent 704f14f commit d22375a

Some content is hidden

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

49 files changed

+120
-116
lines changed

.rubocop.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require:
66
- rubocop-performance
77

88
AllCops:
9-
TargetRubyVersion: 3.0
9+
TargetRubyVersion: 3.2
1010
DisplayCopNames: true
1111
Exclude:
1212
- 'config.ru'

Gemfile.lock

+4
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,8 @@ GEM
272272
net-protocol
273273
net-ssh (7.2.3)
274274
nio4r (2.7.1)
275+
nokogiri (1.16.4-arm64-darwin)
276+
racc (~> 1.4)
275277
nokogiri (1.16.4-x86_64-darwin)
276278
racc (~> 1.4)
277279
nokogiri (1.16.4-x86_64-linux)
@@ -427,6 +429,7 @@ GEM
427429
actionpack (>= 5.2)
428430
activesupport (>= 5.2)
429431
sprockets (>= 3.0.0)
432+
sqlite3 (1.7.3-arm64-darwin)
430433
sqlite3 (1.7.3-x86_64-darwin)
431434
sqlite3 (1.7.3-x86_64-linux)
432435
sshkit (1.22.1)
@@ -476,6 +479,7 @@ GEM
476479
zeitwerk (2.6.13)
477480

478481
PLATFORMS
482+
arm64-darwin-23
479483
x86_64-darwin-19
480484
x86_64-darwin-22
481485
x86_64-linux

app/analyzers/marc_analyzer.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ def self.accept?(blob)
88
end
99

1010
def metadata
11-
metadata = { analyzer: self.class.to_s, count: count, type: type }
11+
metadata = { analyzer: self.class.to_s, count:, type: }
1212
return metadata.merge(valid: false, error: 'No MARC records found') if count.zero?
1313

14-
MarcProfilingJob.perform_later(blob, count: count)
14+
MarcProfilingJob.perform_later(blob, count:)
1515

1616
metadata
1717
rescue MARC::XMLParseError, MARC::Exception => e

app/controllers/concerns/oai_concern.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def self.decode(string)
7171
set, page, from_date, until_date, version = Base64.urlsafe_decode64(string).split(';')
7272
raise BadResumptionToken unless version == ResumptionToken.version
7373

74-
token = ResumptionToken.new(set: set, page: page, from_date: from_date, until_date: until_date)
74+
token = ResumptionToken.new(set:, page:, from_date:, until_date:)
7575
raise BadResumptionToken unless token.valid?
7676

7777
token

app/controllers/oai_controller.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def show
1515
raise OaiConcern::BadVerb
1616
end
1717

18-
def method_missing(method, *_args, &_block)
18+
def method_missing(method, *_args, &)
1919
raise OaiConcern::BadVerb if method.to_s.start_with?('render_')
2020

2121
super
@@ -265,7 +265,7 @@ def build_list_metadata_formats_response
265265
def build_error_response(code, message, params = {})
266266
Nokogiri::XML::Builder.new do |xml|
267267
build_oai_response xml, params do
268-
xml.error(code: code) do
268+
xml.error(code:) do
269269
xml.text message
270270
end
271271
end

app/controllers/uploads_controller.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def current_stream
7373
if params[:stream].present?
7474
slug = @organization.default_stream.normalize_friendly_id(params[:stream])
7575

76-
@organization.streams.find_or_create_by(slug: slug) do |stream|
76+
@organization.streams.find_or_create_by(slug:) do |stream|
7777
stream.name = params[:stream]
7878
end
7979
else

app/helpers/dashboard_helper.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ def files_status(upload)
3636
end
3737

3838
def any_successes?(statuses)
39-
(%i[deletes success] & statuses).any?
39+
%i[deletes success].intersect?(statuses)
4040
end
4141

4242
def any_failures?(statuses)
43-
(%i[invalid not_marc] & statuses).any?
43+
%i[invalid not_marc].intersect?(statuses)
4444
end
4545

4646
def count_roles(users)

app/jobs/application_job.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ def self.with_job_tracking
1919
private
2020

2121
def find_or_initialize_job_tracker
22-
JobTracker.find_or_create_by(job_id: job_id) do |tracker|
22+
JobTracker.find_or_create_by(job_id:) do |tracker|
2323
tracker.job_class = self.class.name
2424
tracker.provider_job_id = provider_job_id
2525
update_job_tracker_properties(tracker)
@@ -31,6 +31,6 @@ def update_job_tracker_properties(tracker)
3131
end
3232

3333
def cleanup_job_tracker
34-
JobTracker.where(job_id: job_id).delete_all
34+
JobTracker.where(job_id:).delete_all
3535
end
3636
end

app/jobs/attach_remote_file_to_upload_job.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class AttachRemoteFileToUploadJob < ApplicationJob
88

99
def perform(upload)
1010
io = URI.parse(upload.url).open
11-
upload.files.attach(io: io, filename: filename_from_io(io) || filename_from_url(upload.url) || upload.name)
11+
upload.files.attach(io:, filename: filename_from_io(io) || filename_from_url(upload.url) || upload.name)
1212
upload.update(status: 'active')
1313
rescue SocketError, OpenURI::HTTPError => e
1414
error = "Error opening #{upload.url}: #{e}"

app/jobs/extract_files_job.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def extract_multifile_attachment(src, upload)
4242
end
4343

4444
def each_file(attachment, limit: 1000)
45-
return to_enum(:each_file, attachment, limit: limit) unless block_given?
45+
return to_enum(:each_file, attachment, limit:) unless block_given?
4646

4747
counter = 0
4848

app/models/allowlisted_jwt.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ def encoded_token
1212

1313
def jwt_attributes
1414
{
15-
jti: jti,
16-
scope: scope,
15+
jti:,
16+
scope:,
1717
iss: 'POD',
1818
name: label
1919
}.compact_blank

app/models/job_tracker.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ def total?
5757

5858
private
5959

60-
def number_with_delimiter(*args)
61-
ActiveSupport::NumberHelper.number_to_delimited(*args)
60+
def number_with_delimiter(*)
61+
ActiveSupport::NumberHelper.number_to_delimited(*)
6262
end
6363

6464
def in_sidekiq_set?(set)

app/models/stream.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ def current_dump_ids(from_date: nil, until_date: nil)
8787
return if full_dump_id.blank?
8888

8989
dumps_query = NormalizedDump.where(id: full_dump_id)
90-
.or(NormalizedDump.where(full_dump_id: full_dump_id))
90+
.or(NormalizedDump.where(full_dump_id:))
9191
.published
9292
.order(created_at: :asc)
9393
dumps_query = dumps_query.where('created_at >= ?', Time.zone.parse(from_date).beginning_of_day) if from_date.present?

app/models/upload.rb

+5-5
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def archive
4242
files.find_each(&:purge_later)
4343
end
4444

45-
# rubocop:disable Metrics/MethodLength
45+
# rubocop:disable Metrics/MethodLength, Style/ArgumentsForwarding
4646
def read_marc_record_metadata(**options, &block)
4747
return to_enum(:read_marc_record_metadata, **options) unless block
4848

@@ -64,7 +64,7 @@ def read_marc_record_metadata(**options, &block)
6464
raise if e.instance_of?(ActiveStorage::FileNotFoundError)
6565
end
6666
end
67-
# rubocop:enable Metrics/MethodLength
67+
# rubocop:enable Metrics/MethodLength, Style/ArgumentsForwarding
6868

6969
private
7070

@@ -97,7 +97,7 @@ def extract_marc_record_delete_metadata(file)
9797
tmpfile.each_line do |line|
9898
yield MarcRecord.new(
9999
marc001: line.strip,
100-
file: file,
100+
file:,
101101
upload: self,
102102
status: 'delete'
103103
)
@@ -106,12 +106,12 @@ def extract_marc_record_delete_metadata(file)
106106
end
107107

108108
def extract_marc_record_metadata(file, service, checksum: true)
109-
return to_enum(:extract_marc_record_metadata, file, service, checksum: checksum) unless block_given?
109+
return to_enum(:extract_marc_record_metadata, file, service, checksum:) unless block_given?
110110

111111
service.each_with_metadata do |record, metadata|
112112
out = MarcRecord.new(
113113
**metadata,
114-
file: file,
114+
file:,
115115
marc: record,
116116
upload: self
117117
)

app/services/marc_record_service.rb

+10-10
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ def each_raw_record(reader)
9797
return to_enum(:each_raw_record, reader) unless block_given?
9898

9999
reader.each_with_index do |record, index|
100-
with_honeybadger_context(index: index, marc001: record['001']&.value) do
100+
with_honeybadger_context(index:, marc001: record['001']&.value) do
101101
yield record
102102
end
103103
end
@@ -140,10 +140,10 @@ def at_bytes(range, merge: false)
140140
else identify
141141
end
142142

143-
from_bytes(io.read(range.size), extracted_type, merge: merge)
143+
from_bytes(io.read(range.size), extracted_type, merge:)
144144
end
145145
else
146-
from_bytes(download_chunk(range), merge: merge)
146+
from_bytes(download_chunk(range), merge:)
147147
end
148148
end
149149

@@ -186,7 +186,7 @@ def each_with_metadata(&block)
186186

187187
return each_with_metadata_for_marc21(&block) if marc21?
188188

189-
each.with_index { |record, index| yield record, extract_record_metadata(record).merge(index: index) }
189+
each.with_index { |record, index| yield record, extract_record_metadata(record).merge(index:) }
190190
end
191191

192192
private
@@ -227,7 +227,7 @@ def each_with_metadata_for_marc21
227227

228228
yield record, {
229229
**records_to_combine.first.except(:marc, :marc_bytes),
230-
index: index,
230+
index:,
231231
length: bytes.length,
232232
checksum: Digest::MD5.hexdigest(bytes)
233233
}
@@ -241,15 +241,15 @@ def each_raw_record_with_metadata_for_marc21
241241
with_reader do |reader|
242242
bytecount = 0
243243
reader.each_raw.with_index do |bytes, index|
244-
with_honeybadger_context(bytecount: bytecount, index: index) do
244+
with_honeybadger_context(bytecount:, index:) do
245245
length = bytes[0...5].to_i
246246
record = MARC::Reader.decode(bytes, external_encoding: 'UTF-8', invalid: :replace)
247-
with_honeybadger_context(marc001: record['001']&.value, bytecount: bytecount, index: index) do
247+
with_honeybadger_context(marc001: record['001']&.value, bytecount:, index:) do
248248
yield(
249249
extract_record_metadata(record).merge(
250-
bytecount: bytecount,
251-
length: length,
252-
index: index,
250+
bytecount:,
251+
length:,
252+
index:,
253253
checksum: Digest::MD5.hexdigest(bytes),
254254
marc_bytes: bytes,
255255
marc: record

app/views/organizations/index.xml.builder

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ xml.sitemapindex(
1313
resourcesync_capabilitylist_url
1414
end
1515

16-
xml.tag!('rs:ln', rel: 'up', href: href)
16+
xml.tag!('rs:ln', rel: 'up', href:)
1717
xml.tag!('rs:md', capability: 'resourcelist', at: Time.zone.now.iso8601)
1818
@organizations.each do |org|
1919
xml.sitemap do

lib/tasks/admin_tasks.rake

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ namespace :agg do
6363
puts "Uploading file #{file['filename']} (#{file['download_url']})"
6464
uri = URI.parse(file['download_url'])
6565
io = uri.open('Authorization' => "Bearer #{Settings.marc_fixture_seeds.token}")
66-
upload.files.attach(io: io, filename: file['filename'])
66+
upload.files.attach(io:, filename: file['filename'])
6767

6868
upload_file_count += 1
6969
break if upload_file_count >= Settings.marc_fixture_seeds.file_count

spec/active_storage_blob_extensions/active_storage_blob_content_types_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def initialize(content_type, analyzer)
1818

1919
def extract_metadata_via_analyzer
2020
{
21-
content_type: content_type
21+
content_type:
2222
}
2323
end
2424

spec/factories/stream.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
sequence(:name) { |n| "stream-#{n}" }
66
factory :stream_with_uploads do
77
after(:create) do |stream, options = { count: 1 }|
8-
create_list(:upload, options[:count], :binary_marc, stream: stream)
8+
create_list(:upload, options[:count], :binary_marc, stream:)
99
end
1010
end
1111

spec/features/normalized_download_spec.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44

55
RSpec.describe 'Downloading normalized files from POD' do
66
let(:organization) { create(:organization, code: 'best-org') }
7-
let(:stream) { create(:stream, organization: organization, default: true) }
7+
let(:stream) { create(:stream, organization:, default: true) }
88
let(:user) { create(:user) }
99

1010
before do
1111
user.add_role :member, organization
1212
login_as(user, scope: :user)
1313

14-
create_list(:upload, 2, :binary_marc, organization: organization, stream: stream)
15-
create_list(:upload, 2, :binary_marc_gz, organization: organization, stream: stream)
14+
create_list(:upload, 2, :binary_marc, organization:, stream:)
15+
create_list(:upload, 2, :binary_marc_gz, organization:, stream:)
1616
end
1717

1818
describe 'Full dumps' do

spec/features/providers_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
before do
1010
login_as(user, scope: :user)
11-
create_list(:upload, 2, :binary_marc, organization: organization, stream: organization.default_stream)
11+
create_list(:upload, 2, :binary_marc, organization:, stream: organization.default_stream)
1212
end
1313

1414
describe 'Providers overview page as an unprivileged user' do

spec/features/unprivileged_user_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
before do
1010
login_as(user, scope: :user)
1111

12-
create_list(:upload, 2, :binary_marc, organization: organization, stream: organization.default_stream)
12+
create_list(:upload, 2, :binary_marc, organization:, stream: organization.default_stream)
1313
end
1414

1515
it 'lists organizations' do

spec/features/upload_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
RSpec.describe 'uploading files to POD' do
66
context 'with an organization user' do
77
let(:organization) { create(:organization, name: 'Best University') }
8-
let(:stream) { create(:stream, organization: organization) }
8+
let(:stream) { create(:stream, organization:) }
99
let(:user) { create(:user) }
1010

1111
before do

spec/jobs/cleanup_and_remove_data_job_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
before do
1010
organization.default_stream
1111
Timecop.travel(4.months.ago)
12-
create_list(:stream, 4, organization: organization)
12+
create_list(:stream, 4, organization:)
1313
Timecop.return
1414
end
1515

@@ -22,7 +22,7 @@
2222
before do
2323
organization.default_stream
2424
Timecop.travel(7.months.ago)
25-
create_list(:stream, 4, organization: organization, status: 'archived')
25+
create_list(:stream, 4, organization:, status: 'archived')
2626
Timecop.return
2727
end
2828

spec/jobs/generate_interstream_delta_job_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
it 'Does not create an interstream delta if the current stream is missing a full dump' do
2121
GenerateFullDumpJob.perform_now(organization)
2222

23-
stream = create(:stream, organization: organization, default: true)
23+
stream = create(:stream, organization:, default: true)
2424
stream.make_default
2525

2626
described_class.perform_now(organization.default_stream)
@@ -31,7 +31,7 @@
3131
it 'Creates an interstream delta with proper additions and deletes' do
3232
GenerateFullDumpJob.perform_now(organization)
3333

34-
stream = create(:stream, organization: organization, default: false)
34+
stream = create(:stream, organization:, default: false)
3535
organization.default_stream.default = false
3636
organization.default_stream.save
3737

spec/mailers/contact_emails_mailer_spec.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
let(:contact_email) { build(:contact_email) }
77

88
describe 'confirm_email' do
9-
subject(:mail) { described_class.with(contact_email: contact_email).confirm_email }
9+
subject(:mail) { described_class.with(contact_email:).confirm_email }
1010

1111
it 'renders the headers' do
1212
expect(mail.subject).to eq('Confirm email')

0 commit comments

Comments
 (0)