From be922631e092a1bfe095c75e6b98564ddc73da60 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Aug 2021 18:03:58 +0000 Subject: [PATCH 1/3] build(deps): bump rubocop-ast from 1.9.1 to 1.10.0 in /Library/Homebrew Bumps [rubocop-ast](https://github.com/rubocop-hq/rubocop-ast) from 1.9.1 to 1.10.0. - [Release notes](https://github.com/rubocop-hq/rubocop-ast/releases) - [Changelog](https://github.com/rubocop/rubocop-ast/blob/master/CHANGELOG.md) - [Commits](https://github.com/rubocop-hq/rubocop-ast/compare/v1.9.1...v1.10.0) --- updated-dependencies: - dependency-name: rubocop-ast dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Library/Homebrew/Gemfile.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/Gemfile.lock b/Library/Homebrew/Gemfile.lock index f41903ee6a..4c1fad3667 100644 --- a/Library/Homebrew/Gemfile.lock +++ b/Library/Homebrew/Gemfile.lock @@ -121,7 +121,7 @@ GEM rubocop-ast (>= 1.8.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.9.1) + rubocop-ast (1.10.0) parser (>= 3.0.1.1) rubocop-performance (1.11.4) rubocop (>= 1.7.0, < 2.0) From e8c005c177e822bbd60ae36ccf91bbe443bee9af Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 13 Aug 2021 18:06:29 +0000 Subject: [PATCH 2/3] brew vendor-gems: commit updates. --- Library/Homebrew/vendor/bundle/bundler/setup.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/vendor/bundle/bundler/setup.rb b/Library/Homebrew/vendor/bundle/bundler/setup.rb index ec7e20618d..b967e2d6cb 100644 --- a/Library/Homebrew/vendor/bundle/bundler/setup.rb +++ b/Library/Homebrew/vendor/bundle/bundler/setup.rb @@ -78,7 +78,7 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/sorbet-0.5.9033/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-sorbet-1.8.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-wait-0.0.9/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec_junit_formatter-0.4.1/lib" -$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-ast-1.9.1/lib" +$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-ast-1.10.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ruby-progressbar-1.11.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/unicode-display_width-2.0.0/lib" $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-1.18.4/lib" From d30773f81ee9e3c9485965b6585cce67284eccea Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 13 Aug 2021 18:08:49 +0000 Subject: [PATCH 3/3] Update RBI files for rubocop-ast. --- ...p-ast@1.9.1.rbi => rubocop-ast@1.10.0.rbi} | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) rename Library/Homebrew/sorbet/rbi/gems/{rubocop-ast@1.9.1.rbi => rubocop-ast@1.10.0.rbi} (99%) diff --git a/Library/Homebrew/sorbet/rbi/gems/rubocop-ast@1.9.1.rbi b/Library/Homebrew/sorbet/rbi/gems/rubocop-ast@1.10.0.rbi similarity index 99% rename from Library/Homebrew/sorbet/rbi/gems/rubocop-ast@1.9.1.rbi rename to Library/Homebrew/sorbet/rbi/gems/rubocop-ast@1.10.0.rbi index d45f87357a..d7600dc39c 100644 --- a/Library/Homebrew/sorbet/rbi/gems/rubocop-ast@1.9.1.rbi +++ b/Library/Homebrew/sorbet/rbi/gems/rubocop-ast@1.10.0.rbi @@ -278,6 +278,10 @@ class RuboCop::AST::AliasNode < ::RuboCop::AST::Node def old_identifier; end end +class RuboCop::AST::AndAsgnNode < ::RuboCop::AST::OpAsgnNode + def operator; end +end + class RuboCop::AST::AndNode < ::RuboCop::AST::Node include ::RuboCop::AST::BinaryOperatorNode include ::RuboCop::AST::PredicateOperatorNode @@ -309,6 +313,11 @@ end RuboCop::AST::ArrayNode::PERCENT_LITERAL_TYPES = T.let(T.unsafe(nil), Hash) +class RuboCop::AST::AsgnNode < ::RuboCop::AST::Node + def expression; end + def name; end +end + module RuboCop::AST::BasicLiteralNode def value; end end @@ -383,6 +392,12 @@ class RuboCop::AST::CaseNode < ::RuboCop::AST::Node def when_branches; end end +class RuboCop::AST::CasgnNode < ::RuboCop::AST::Node + def expression; end + def name; end + def namespace; end +end + class RuboCop::AST::ClassNode < ::RuboCop::AST::Node def body; end def identifier; end @@ -1771,6 +1786,17 @@ end RuboCop::AST::NumericNode::SIGN_REGEX = T.let(T.unsafe(nil), Regexp) +class RuboCop::AST::OpAsgnNode < ::RuboCop::AST::Node + def assignment_node; end + def expression; end + def name; end + def operator; end +end + +class RuboCop::AST::OrAsgnNode < ::RuboCop::AST::OpAsgnNode + def operator; end +end + class RuboCop::AST::OrNode < ::RuboCop::AST::Node include ::RuboCop::AST::BinaryOperatorNode include ::RuboCop::AST::PredicateOperatorNode