Update RBI files for thor.

This commit is contained in:
BrewTestBot 2022-01-05 18:12:09 +00:00
parent 9ac58f05a5
commit 83d4e339bf
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F

View File

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