Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the bundler-deps group across 1 directory with 2 updates #2714

Merged
merged 2 commits into from
May 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ source 'https://rubygems.org'

gem 'bundler-audit', '~> 0.9', require: false
gem 'rake', '>= 12.3.3', require: false
gem 'rubocop', '~> 1.62', require: false
gem 'rubocop', '~> 1.63', require: false
gem 'rubocop-rake', '~> 0.6', require: false
gem 'tomlrb', '~> 2.0', require: false
16 changes: 8 additions & 8 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,19 @@ GEM
bundler-audit (0.9.1)
bundler (>= 1.2.0, < 3)
thor (~> 1.0)
json (2.7.1)
json (2.7.2)
language_server-protocol (3.17.0.3)
parallel (1.24.0)
parser (3.3.0.5)
parser (3.3.1.0)
ast (~> 2.4.1)
racc
racc (1.7.3)
rainbow (3.1.1)
rake (13.1.0)
regexp_parser (2.9.0)
rake (13.2.1)
regexp_parser (2.9.2)
rexml (3.2.8)
strscan (>= 3.0.9)
rubocop (1.62.1)
rubocop (1.63.5)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
Expand All @@ -28,8 +28,8 @@ GEM
rubocop-ast (>= 1.31.1, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.2)
parser (>= 3.3.0.4)
rubocop-ast (1.31.3)
parser (>= 3.3.1.0)
rubocop-rake (0.6.0)
rubocop (~> 1.0)
ruby-progressbar (1.13.0)
Expand All @@ -46,7 +46,7 @@ PLATFORMS
DEPENDENCIES
bundler-audit (~> 0.9)
rake (>= 12.3.3)
rubocop (~> 1.62)
rubocop (~> 1.63)
rubocop-rake (~> 0.6)
tomlrb (~> 2.0)

Expand Down
4 changes: 2 additions & 2 deletions artichoke-backend/src/extn/core/enumerable/enumerable.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def collect(&block)
return to_enum :collect unless block

ary = []
each { |val| ary.push(block.call(val)) }
each { |val| ary.push(block.call(val)) } # rubocop:disable Style/MapIntoArray
ary
end

Expand Down Expand Up @@ -179,7 +179,7 @@ def each_with_object(obj, &block)

def entries
ary = []
each do |val|
each do |val| # rubocop:disable Style/MapIntoArray
ary.push(val)
end
ary
Expand Down
Loading