diff --git a/Library/Homebrew/sorbet/rbi/gems/thor@1.1.0.rbi b/Library/Homebrew/sorbet/rbi/gems/thor@1.2.1.rbi similarity index 99% rename from Library/Homebrew/sorbet/rbi/gems/thor@1.1.0.rbi rename to Library/Homebrew/sorbet/rbi/gems/thor@1.2.1.rbi index dfebadd3da..ea083d4079 100644 --- a/Library/Homebrew/sorbet/rbi/gems/thor@1.1.0.rbi +++ b/Library/Homebrew/sorbet/rbi/gems/thor@1.2.1.rbi @@ -1,9 +1,9 @@ +# typed: true + # DO NOT EDIT MANUALLY # This is an autogenerated file for types exported from the `thor` gem. # Please instead update this file by running `bin/tapioca gem thor`. -# typed: true - class Thor include ::Thor::Base include ::Thor::Invocation @@ -388,6 +388,7 @@ class Thor::CoreExt::HashWithIndifferentAccess < ::Hash def [](key); end def []=(key, value); end def delete(key); end + def except(*keys); end def fetch(key, *args); end def key?(key); end def merge(other); end @@ -600,6 +601,8 @@ class Thor::Options < ::Thor::Arguments def parse(args); end def peek; end def remaining; end + def shift; end + def unshift(arg, is_value: T.unsafe(nil)); end protected @@ -639,6 +642,7 @@ module Thor::Shell def print_table(*args, &block); end def print_wrapped(*args, &block); end def say(*args, &block); end + def say_error(*args, &block); end def say_status(*args, &block); end def set_color(*args, &block); end def shell; end @@ -670,6 +674,7 @@ class Thor::Shell::Basic def print_table(array, options = T.unsafe(nil)); end def print_wrapped(message, options = T.unsafe(nil)); end def say(message = T.unsafe(nil), color = T.unsafe(nil), force_new_line = T.unsafe(nil)); end + def say_error(message = T.unsafe(nil), color = T.unsafe(nil), force_new_line = T.unsafe(nil)); end def say_status(status, message, log_status = T.unsafe(nil)); end def set_color(string, *_arg1); end def terminal_width; end