sorbet: Regenerate RBI hidden-definitions
- [The docs](https://sorbet.org/docs/rbi#the-hidden-definition-rbi) say we have to do this whenever gems are bumped.
This commit is contained in:
parent
7ce5b20858
commit
1921a4e4ee
@ -5496,6 +5496,8 @@ class Cask::Cask
|
|||||||
|
|
||||||
def depends_on(&block); end
|
def depends_on(&block); end
|
||||||
|
|
||||||
|
def desc(&block); end
|
||||||
|
|
||||||
def dictionary(&block); end
|
def dictionary(&block); end
|
||||||
|
|
||||||
def font(&block); end
|
def font(&block); end
|
||||||
@ -8090,6 +8092,10 @@ module Homebrew
|
|||||||
MIN_PORT = ::T.let(nil, ::T.untyped)
|
MIN_PORT = ::T.let(nil, ::T.untyped)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
class Homebrew::CLI::Parser
|
||||||
|
include ::Homebrew::CLI::Parser::Compat
|
||||||
|
end
|
||||||
|
|
||||||
module Homebrew::EnvConfig
|
module Homebrew::EnvConfig
|
||||||
def self.all_proxy(); end
|
def self.all_proxy(); end
|
||||||
|
|
||||||
@ -13370,6 +13376,7 @@ class Object
|
|||||||
def to_yaml(options=T.unsafe(nil)); end
|
def to_yaml(options=T.unsafe(nil)); end
|
||||||
ARGF = ::T.let(nil, ::T.untyped)
|
ARGF = ::T.let(nil, ::T.untyped)
|
||||||
ARGV = ::T.let(nil, ::T.untyped)
|
ARGV = ::T.let(nil, ::T.untyped)
|
||||||
|
BUG_REPORTS_URL = ::T.let(nil, ::T.untyped)
|
||||||
CROSS_COMPILING = ::T.let(nil, ::T.untyped)
|
CROSS_COMPILING = ::T.let(nil, ::T.untyped)
|
||||||
DEPRECATED_OFFICIAL_TAPS = ::T.let(nil, ::T.untyped)
|
DEPRECATED_OFFICIAL_TAPS = ::T.let(nil, ::T.untyped)
|
||||||
ENV = ::T.let(nil, ::T.untyped)
|
ENV = ::T.let(nil, ::T.untyped)
|
||||||
@ -19536,6 +19543,8 @@ class RuboCop::Cask::AST::Stanza
|
|||||||
|
|
||||||
def depends_on?(); end
|
def depends_on?(); end
|
||||||
|
|
||||||
|
def desc?(); end
|
||||||
|
|
||||||
def dictionary?(); end
|
def dictionary?(); end
|
||||||
|
|
||||||
def font?(); end
|
def font?(); end
|
||||||
@ -19613,6 +19622,10 @@ class RuboCop::Cop::Cask::NoDslVersion
|
|||||||
def preferred_header_str(*args, &block); end
|
def preferred_header_str(*args, &block); end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
module RuboCop::Cop::Cask::OnDescStanza
|
||||||
|
def toplevel_stanzas(*args, &block); end
|
||||||
|
end
|
||||||
|
|
||||||
module RuboCop::Cop::Cask::OnHomepageStanza
|
module RuboCop::Cop::Cask::OnHomepageStanza
|
||||||
def toplevel_stanzas(*args, &block); end
|
def toplevel_stanzas(*args, &block); end
|
||||||
end
|
end
|
||||||
@ -21064,6 +21077,7 @@ class SimpleCov::Formatter::Codecov
|
|||||||
CIRCLE = ::T.let(nil, ::T.untyped)
|
CIRCLE = ::T.let(nil, ::T.untyped)
|
||||||
CODESHIP = ::T.let(nil, ::T.untyped)
|
CODESHIP = ::T.let(nil, ::T.untyped)
|
||||||
DRONEIO = ::T.let(nil, ::T.untyped)
|
DRONEIO = ::T.let(nil, ::T.untyped)
|
||||||
|
GITHUB = ::T.let(nil, ::T.untyped)
|
||||||
GITLAB = ::T.let(nil, ::T.untyped)
|
GITLAB = ::T.let(nil, ::T.untyped)
|
||||||
HEROKU = ::T.let(nil, ::T.untyped)
|
HEROKU = ::T.let(nil, ::T.untyped)
|
||||||
JENKINS = ::T.let(nil, ::T.untyped)
|
JENKINS = ::T.let(nil, ::T.untyped)
|
||||||
@ -21995,8 +22009,6 @@ class SystemCommand
|
|||||||
def print_stdout?(); end
|
def print_stdout?(); end
|
||||||
|
|
||||||
def sudo?(); end
|
def sudo?(); end
|
||||||
|
|
||||||
def verbose?(); end
|
|
||||||
end
|
end
|
||||||
|
|
||||||
module TZInfo
|
module TZInfo
|
||||||
@ -22973,42 +22985,6 @@ end
|
|||||||
class Tempfile::Remover
|
class Tempfile::Remover
|
||||||
end
|
end
|
||||||
|
|
||||||
class Thor::Group
|
|
||||||
def self.banner(); end
|
|
||||||
|
|
||||||
def self.self_command(); end
|
|
||||||
|
|
||||||
def self.self_task(); end
|
|
||||||
end
|
|
||||||
|
|
||||||
class Thor
|
|
||||||
def self.banner(command, namespace=T.unsafe(nil), subcommand=T.unsafe(nil)); end
|
|
||||||
|
|
||||||
def self.disable_required_check(); end
|
|
||||||
|
|
||||||
def self.dispatch(meth, given_args, given_opts, config); end
|
|
||||||
|
|
||||||
def self.dynamic_command_class(); end
|
|
||||||
|
|
||||||
def self.find_command_possibilities(meth); end
|
|
||||||
|
|
||||||
def self.find_task_possibilities(meth); end
|
|
||||||
|
|
||||||
def self.normalize_command_name(meth); end
|
|
||||||
|
|
||||||
def self.normalize_task_name(meth); end
|
|
||||||
|
|
||||||
def self.retrieve_command_name(args); end
|
|
||||||
|
|
||||||
def self.retrieve_task_name(args); end
|
|
||||||
|
|
||||||
def self.stop_on_unknown_option(); end
|
|
||||||
|
|
||||||
def self.subcommand_help(cmd); end
|
|
||||||
|
|
||||||
def self.subtask_help(cmd); end
|
|
||||||
end
|
|
||||||
|
|
||||||
module ThreadSafe
|
module ThreadSafe
|
||||||
NULL = ::T.let(nil, ::T.untyped)
|
NULL = ::T.let(nil, ::T.untyped)
|
||||||
VERSION = ::T.let(nil, ::T.untyped)
|
VERSION = ::T.let(nil, ::T.untyped)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user