Skip to content

Commit

Permalink
Merge pull request #483 from sanger/depfu/update/rubocop-1.68.0
Browse files Browse the repository at this point in the history
Update rubocop 1.65.1 → 1.68.0 (minor)
  • Loading branch information
yoldas authored Nov 21, 2024
2 parents ab360c5 + ceaca44 commit b42f98e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
15 changes: 7 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ GEM
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
json (2.7.2)
json (2.8.2)
language_server-protocol (3.17.0.3)
launchy (3.0.1)
addressable (~> 2.8)
Expand Down Expand Up @@ -155,8 +155,8 @@ GEM
nokogiri (1.16.7)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
parallel (1.26.2)
parser (3.3.4.2)
parallel (1.26.3)
parser (3.3.6.0)
ast (~> 2.4.1)
racc
pry (0.14.2)
Expand Down Expand Up @@ -226,18 +226,17 @@ GEM
rspec-mocks (~> 3.13)
rspec-support (~> 3.13)
rspec-support (3.13.1)
rubocop (1.65.1)
rubocop (1.68.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 2.4, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.31.1, < 2.0)
rubocop-ast (>= 1.32.2, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.32.0)
rubocop-ast (1.36.1)
parser (>= 3.3.1.0)
rubocop-performance (1.21.1)
rubocop (>= 1.48.1, < 2.0)
Expand Down Expand Up @@ -295,7 +294,7 @@ GEM
concurrent-ruby (~> 1.0)
uglifier (4.2.0)
execjs (>= 0.3.0, < 3)
unicode-display_width (2.5.0)
unicode-display_width (2.6.0)
web-console (4.0.4)
actionview (>= 6.0.0)
activemodel (>= 6.0.0)
Expand Down
6 changes: 1 addition & 5 deletions app/models/report.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,7 @@ def date_format
private

def create_rows
[].tap do |rows|
assets_data.each do |data|
rows << Row.new(data)
end
end
assets_data.map { |data| Row.new(data) }
end

def assets_data
Expand Down

0 comments on commit b42f98e

Please sign in to comment.