Merge pull request #12030 from Homebrew/dependabot/bundler/Library/Homebrew/rubocop-rails-2.12.1

build(deps): bump rubocop-rails from 2.12.0 to 2.12.1 in /Library/Homebrew
This commit is contained in:
Nanda H Krishna 2021-09-10 14:46:38 -04:00 committed by GitHub
commit 3c9ae8fd01
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
111 changed files with 10 additions and 5 deletions

View File

@ -126,7 +126,7 @@ GEM
rubocop-performance (1.11.5)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-rails (2.12.0)
rubocop-rails (2.12.1)
activesupport (>= 4.2.0)
rack (>= 1.1)
rubocop (>= 1.7.0, < 2.0)

View File

@ -160,5 +160,8 @@ module Cask
sig { returns(T::Boolean) }
def quarantine?; end
sig { returns(T::Boolean) }
def quiet?; end
end
end

View File

@ -83,7 +83,7 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ruby-progressbar-1.11
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/unicode-display_width-2.0.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-1.20.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-performance-1.11.5/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-rails-2.12.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-rails-2.12.1/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-rspec-2.4.0/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-sorbet-0.6.2/lib"
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ruby-macho-2.5.1/lib"

View File

@ -100,8 +100,8 @@ module RuboCop
end
def contain_valid_options_in_with_options_block?(node)
if with_options_block(node)
return true if valid_options?(with_options_block(node))
if (options = with_options_block(node))
return true if valid_options?(options)
return false unless node.parent
@ -114,6 +114,8 @@ module RuboCop
end
def valid_options?(options)
return false if options.nil?
options = options.first.children.first.pairs if options.first.kwsplat_type?
return true unless options

Some files were not shown because too many files have changed in this diff Show More