Merge pull request #12737 from Homebrew/dependabot/bundler/Library/Homebrew/rubocop-performance-1.13.2

build(deps): bump rubocop-performance from 1.13.1 to 1.13.2 in /Library/Homebrew
This commit is contained in:
Nanda H Krishna 2022-01-17 14:26:56 -05:00 committed by GitHub
commit b663421184
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
61 changed files with 5 additions and 4 deletions

View File

@ -135,7 +135,7 @@ GEM
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.15.1)
parser (>= 3.0.1.1)
rubocop-performance (1.13.1)
rubocop-performance (1.13.2)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-rails (2.13.1)

View File

@ -87,7 +87,7 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-ast-1.15.1/li
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ruby-progressbar-1.11.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/unicode-display_width-2.1.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-1.24.1/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-performance-1.13.1/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-performance-1.13.2/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-rails-2.13.1/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-rspec-2.7.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-sorbet-0.6.5/lib"

View File

@ -38,8 +38,9 @@ module RuboCop
block_arg = def_node.arguments.find(&:blockarg_type?)
return unless block_arg
return unless (block_arg_name = block_arg.loc.name)
block_arg_name = block_arg.loc.name.source.to_sym
block_arg_name = block_arg_name.source.to_sym
return if reassigns_block_arg?(def_node, block_arg_name)
add_offense(node) do |corrector|

View File

@ -4,7 +4,7 @@ module RuboCop
module Performance
# This module holds the RuboCop Performance version information.
module Version
STRING = '1.13.1'
STRING = '1.13.2'
def self.document_version
STRING.match('\d+\.\d+').to_s