diff --git a/Library/Homebrew/Gemfile.lock b/Library/Homebrew/Gemfile.lock index ed7ea80403..2bb566dcb0 100644 --- a/Library/Homebrew/Gemfile.lock +++ b/Library/Homebrew/Gemfile.lock @@ -77,7 +77,7 @@ GEM rspec-support (3.13.2) rspec_junit_formatter (0.6.0) rspec-core (>= 2, < 4, != 2.12.0) - rubocop (1.75.0) + rubocop (1.75.1) json (~> 2.3) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.1.0) diff --git a/Library/Homebrew/sorbet/rbi/dsl/homebrew/cmd/update_if_needed.rbi b/Library/Homebrew/sorbet/rbi/dsl/homebrew/cmd/update_if_needed.rbi new file mode 100644 index 0000000000..b5ee0044c1 --- /dev/null +++ b/Library/Homebrew/sorbet/rbi/dsl/homebrew/cmd/update_if_needed.rbi @@ -0,0 +1,13 @@ +# typed: true + +# DO NOT EDIT MANUALLY +# This is an autogenerated file for dynamic methods in `Homebrew::Cmd::UpdateIfNeeded`. +# Please instead update this file by running `bin/tapioca dsl Homebrew::Cmd::UpdateIfNeeded`. + + +class Homebrew::Cmd::UpdateIfNeeded + sig { returns(Homebrew::Cmd::UpdateIfNeeded::Args) } + def args; end +end + +class Homebrew::Cmd::UpdateIfNeeded::Args < Homebrew::CLI::Args; end diff --git a/Library/Homebrew/sorbet/rbi/gems/rubocop@1.75.0.rbi b/Library/Homebrew/sorbet/rbi/gems/rubocop@1.75.1.rbi similarity index 99% rename from Library/Homebrew/sorbet/rbi/gems/rubocop@1.75.0.rbi rename to Library/Homebrew/sorbet/rbi/gems/rubocop@1.75.1.rbi index db1cd5a023..c5daaab6eb 100644 --- a/Library/Homebrew/sorbet/rbi/gems/rubocop@1.75.0.rbi +++ b/Library/Homebrew/sorbet/rbi/gems/rubocop@1.75.1.rbi @@ -42275,13 +42275,13 @@ RuboCop::Cop::Style::ItAssignment::MSG = T.let(T.unsafe(nil), String) # # It provides three `EnforcedStyle` options: # -# 1. `allow_named_parameter` (default) ... Detects only numbered block parameters. +# 1. `only_numbered_parameters` (default) ... Detects only numbered block parameters. # 2. `always` ... Always uses the `it` block parameter. # 3. `disallow` ... Disallows the `it` block parameter. # -# A single numbered parameter is detected when `allow_named_parameter` or `always`. +# A single numbered parameter is detected when `only_numbered_parameters` or `always`. # -# @example EnforcedStyle: allow_named_parameter (default) +# @example EnforcedStyle: only_numbered_parameters (default) # # bad # block { do_something(_1) } # @@ -47592,15 +47592,15 @@ RuboCop::Cop::Style::QuotedSymbols::MSG_DOUBLE = T.let(T.unsafe(nil), String) # source://rubocop//lib/rubocop/cop/style/quoted_symbols.rb#39 RuboCop::Cop::Style::QuotedSymbols::MSG_SINGLE = T.let(T.unsafe(nil), String) -# Checks the args passed to `fail` and `raise`. For exploded -# style (default), it recommends passing the exception class and message -# to `raise`, rather than construct an instance of the error. It will -# still allow passing just a message, or the construction of an error -# with more than one argument. +# Checks the args passed to `fail` and `raise`. # -# The exploded style works identically, but with the addition that it -# will also suggest constructing error objects when the exception is -# passed multiple arguments. +# Exploded style (default) enforces passing the exception class and message +# arguments separately, rather than constructing an instance of the error. +# +# Compact style enforces constructing an error instance. +# +# Both styles allow passing just a message, or an error instance when there is more +# than one argument. # # The exploded style has an `AllowedCompactTypes` configuration # option that takes an `Array` of exception name Strings. diff --git a/Library/Homebrew/vendor/bundle/bundler/setup.rb b/Library/Homebrew/vendor/bundle/bundler/setup.rb index ae830be391..2c72d7266b 100644 --- a/Library/Homebrew/vendor/bundle/bundler/setup.rb +++ b/Library/Homebrew/vendor/bundle/bundler/setup.rb @@ -94,7 +94,7 @@ $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/ruby-progressbar-1.13.0/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/unicode-emoji-4.0.4/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/unicode-display_width-3.1.4/lib") -$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-1.75.0/lib") +$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-1.75.1/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-md-2.0.0/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-performance-1.24.0/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/rubocop-rspec-3.5.0/lib")