From aa474573782411c7bb19fdc2de5e90f74b379528 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 May 2023 18:57:36 +0000 Subject: [PATCH 1/3] Bump thor from 1.2.1 to 1.2.2 in /Library/Homebrew Bumps [thor](https://github.com/rails/thor) from 1.2.1 to 1.2.2. - [Release notes](https://github.com/rails/thor/releases) - [Commits](https://github.com/rails/thor/compare/v1.2.1...v1.2.2) --- updated-dependencies: - dependency-name: thor dependency-type: indirect update-type: version-update:semver-patch ... 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 3ebcd64227..25ff69e0a2 100644 --- a/Library/Homebrew/Gemfile.lock +++ b/Library/Homebrew/Gemfile.lock @@ -163,7 +163,7 @@ GEM spoom (~> 1.1.0, >= 1.1.11) thor (>= 1.2.0) yard-sorbet - thor (1.2.1) + thor (1.2.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.4.2) From 3e588581deb383a81a8a93fc0876fdc7eebf7742 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 12 May 2023 19:00:59 +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 780fbf2222..cd7bacc0e7 100644 --- a/Library/Homebrew/vendor/bundle/bundler/setup.rb +++ b/Library/Homebrew/vendor/bundle/bundler/setup.rb @@ -102,7 +102,7 @@ $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/sorbet-static-0.5.10461-universal-darwin-22/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/sorbet-0.5.10461/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/sorbet-static-and-runtime-0.5.10461/lib") -$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/thor-1.2.1/lib") +$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/thor-1.2.2/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/spoom-1.1.11/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/extensions/universal-darwin-22/#{Gem.extension_api_version}/stackprof-0.2.25") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/stackprof-0.2.25/lib") From 3852582d9fcc9374dfce5bccd0275103a09136e1 Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Fri, 12 May 2023 19:05:40 +0000 Subject: [PATCH 3/3] Update RBI files for thor. Autogenerated by the [vendor-gems](https://github.com/Homebrew/brew/blob/HEAD/.github/workflows/vendor-gems.yml) workflow. --- .../sorbet/rbi/gems/{thor@1.2.1.rbi => thor@1.2.2.rbi} | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) rename Library/Homebrew/sorbet/rbi/gems/{thor@1.2.1.rbi => thor@1.2.2.rbi} (99%) diff --git a/Library/Homebrew/sorbet/rbi/gems/thor@1.2.1.rbi b/Library/Homebrew/sorbet/rbi/gems/thor@1.2.2.rbi similarity index 99% rename from Library/Homebrew/sorbet/rbi/gems/thor@1.2.1.rbi rename to Library/Homebrew/sorbet/rbi/gems/thor@1.2.2.rbi index ea083d4079..8018184bb2 100644 --- a/Library/Homebrew/sorbet/rbi/gems/thor@1.2.1.rbi +++ b/Library/Homebrew/sorbet/rbi/gems/thor@1.2.2.rbi @@ -405,7 +405,10 @@ class Thor::CoreExt::HashWithIndifferentAccess < ::Hash def method_missing(method, *args); end end -Thor::Correctable = DidYouMean::Correctable +module Thor::Correctable + def corrections; end + def to_s; end +end class Thor::DynamicCommand < ::Thor::Command def initialize(name, options = T.unsafe(nil)); end @@ -566,6 +569,7 @@ class Thor::Option < ::Thor::Argument def initialize(name, options = T.unsafe(nil)); end def aliases; end + def aliases_for_usage; end def array?; end def boolean?; end def group; end @@ -774,7 +778,7 @@ Thor::THOR_RESERVED_WORDS = T.let(T.unsafe(nil), Array) Thor::Task = Thor::Command class Thor::UndefinedCommandError < ::Thor::Error - include ::DidYouMean::Correctable + include ::Thor::Correctable def initialize(command, all_commands, namespace); end @@ -793,7 +797,7 @@ end Thor::UndefinedTaskError = Thor::UndefinedCommandError class Thor::UnknownArgumentError < ::Thor::Error - include ::DidYouMean::Correctable + include ::Thor::Correctable def initialize(switches, unknown); end