Merge pull request #11981 from Homebrew/dependabot/bundler/Library/Homebrew/tapioca-0.4.26
build(deps-dev): bump tapioca from 0.4.25 to 0.4.26 in /Library/Homebrew
This commit is contained in:
commit
f0dbd8d9a5
@ -156,7 +156,7 @@ GEM
|
|||||||
sorbet (>= 0.5.6347)
|
sorbet (>= 0.5.6347)
|
||||||
sorbet-runtime
|
sorbet-runtime
|
||||||
thor (>= 0.19.2)
|
thor (>= 0.19.2)
|
||||||
tapioca (0.4.25)
|
tapioca (0.4.26)
|
||||||
bundler (>= 1.17.3)
|
bundler (>= 1.17.3)
|
||||||
parlour (>= 2.1.0)
|
parlour (>= 2.1.0)
|
||||||
pry (>= 0.12.2)
|
pry (>= 0.12.2)
|
||||||
|
|||||||
@ -772,7 +772,7 @@ Tapioca::Compilers::Sorbet::SORBET = T.let(T.unsafe(nil), Pathname)
|
|||||||
module Tapioca::Compilers::SymbolTable; end
|
module Tapioca::Compilers::SymbolTable; end
|
||||||
|
|
||||||
class Tapioca::Compilers::SymbolTable::SymbolGenerator
|
class Tapioca::Compilers::SymbolTable::SymbolGenerator
|
||||||
sig { params(gem: Tapioca::Gemfile::Gem, indent: Integer).void }
|
sig { params(gem: Tapioca::Gemfile::GemSpec, indent: Integer).void }
|
||||||
def initialize(gem, indent = T.unsafe(nil)); end
|
def initialize(gem, indent = T.unsafe(nil)); end
|
||||||
|
|
||||||
def gem; end
|
def gem; end
|
||||||
@ -971,7 +971,7 @@ class Tapioca::Compilers::SymbolTable::SymbolLoader::SymbolTableParser
|
|||||||
end
|
end
|
||||||
|
|
||||||
class Tapioca::Compilers::SymbolTableCompiler
|
class Tapioca::Compilers::SymbolTableCompiler
|
||||||
sig { params(gem: Tapioca::Gemfile::Gem, indent: Integer).returns(String) }
|
sig { params(gem: Tapioca::Gemfile::GemSpec, indent: Integer).returns(String) }
|
||||||
def compile(gem, indent = T.unsafe(nil)); end
|
def compile(gem, indent = T.unsafe(nil)); end
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -1054,17 +1054,17 @@ class Tapioca::Gemfile
|
|||||||
sig { returns(Bundler::Definition) }
|
sig { returns(Bundler::Definition) }
|
||||||
def definition; end
|
def definition; end
|
||||||
|
|
||||||
sig { returns(T::Array[Tapioca::Gemfile::Gem]) }
|
sig { returns(T::Array[Tapioca::Gemfile::GemSpec]) }
|
||||||
def dependencies; end
|
def dependencies; end
|
||||||
|
|
||||||
sig { params(gem_name: String).returns(T.nilable(Tapioca::Gemfile::Gem)) }
|
sig { params(gem_name: String).returns(T.nilable(Tapioca::Gemfile::GemSpec)) }
|
||||||
def gem(gem_name); end
|
def gem(gem_name); end
|
||||||
|
|
||||||
sig { returns(T::Array[String]) }
|
sig { returns(T::Array[String]) }
|
||||||
def missing_specs; end
|
def missing_specs; end
|
||||||
|
|
||||||
sig { void }
|
sig { void }
|
||||||
def require; end
|
def require_bundle; end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
@ -1077,7 +1077,7 @@ class Tapioca::Gemfile
|
|||||||
sig { returns(T::Array[Symbol]) }
|
sig { returns(T::Array[Symbol]) }
|
||||||
def groups; end
|
def groups; end
|
||||||
|
|
||||||
sig { returns([T::Array[Tapioca::Gemfile::Gem], T::Array[String]]) }
|
sig { returns([T::Array[Tapioca::Gemfile::GemSpec], T::Array[String]]) }
|
||||||
def load_dependencies; end
|
def load_dependencies; end
|
||||||
|
|
||||||
def lockfile; end
|
def lockfile; end
|
||||||
@ -1089,7 +1089,7 @@ class Tapioca::Gemfile
|
|||||||
def runtime; end
|
def runtime; end
|
||||||
end
|
end
|
||||||
|
|
||||||
class Tapioca::Gemfile::Gem
|
class Tapioca::Gemfile::GemSpec
|
||||||
sig { params(spec: T.any(Gem::Specification, T.all(Bundler::RemoteSpecification, Bundler::StubSpecification))).void }
|
sig { params(spec: T.any(Gem::Specification, T.all(Bundler::RemoteSpecification, Bundler::StubSpecification))).void }
|
||||||
def initialize(spec); end
|
def initialize(spec); end
|
||||||
|
|
||||||
@ -1140,7 +1140,7 @@ class Tapioca::Gemfile::Gem
|
|||||||
def version_string; end
|
def version_string; end
|
||||||
end
|
end
|
||||||
|
|
||||||
Tapioca::Gemfile::Gem::IGNORED_GEMS = T.let(T.unsafe(nil), Array)
|
Tapioca::Gemfile::GemSpec::IGNORED_GEMS = T.let(T.unsafe(nil), Array)
|
||||||
Tapioca::Gemfile::Spec = T.type_alias { T.any(Gem::Specification, T.all(Bundler::RemoteSpecification, Bundler::StubSpecification)) }
|
Tapioca::Gemfile::Spec = T.type_alias { T.any(Gem::Specification, T.all(Bundler::RemoteSpecification, Bundler::StubSpecification)) }
|
||||||
|
|
||||||
class Tapioca::Generator < ::Thor::Shell::Color
|
class Tapioca::Generator < ::Thor::Shell::Color
|
||||||
@ -1182,7 +1182,7 @@ class Tapioca::Generator < ::Thor::Shell::Color
|
|||||||
sig { params(constant_name: String, contents: String, outpath: Pathname, quiet: T::Boolean).returns(T.nilable(Pathname)) }
|
sig { params(constant_name: String, contents: String, outpath: Pathname, quiet: T::Boolean).returns(T.nilable(Pathname)) }
|
||||||
def compile_dsl_rbi(constant_name, contents, outpath: T.unsafe(nil), quiet: T.unsafe(nil)); end
|
def compile_dsl_rbi(constant_name, contents, outpath: T.unsafe(nil), quiet: T.unsafe(nil)); end
|
||||||
|
|
||||||
sig { params(gem: Tapioca::Gemfile::Gem).void }
|
sig { params(gem: Tapioca::Gemfile::GemSpec).void }
|
||||||
def compile_gem_rbi(gem); end
|
def compile_gem_rbi(gem); end
|
||||||
|
|
||||||
sig { returns(Tapioca::Compilers::SymbolTableCompiler) }
|
sig { returns(Tapioca::Compilers::SymbolTableCompiler) }
|
||||||
@ -1218,7 +1218,7 @@ class Tapioca::Generator < ::Thor::Shell::Color
|
|||||||
sig { params(gem_name: String, version: String).returns(Pathname) }
|
sig { params(gem_name: String, version: String).returns(Pathname) }
|
||||||
def gem_rbi_filename(gem_name, version); end
|
def gem_rbi_filename(gem_name, version); end
|
||||||
|
|
||||||
sig { params(gem_names: T::Array[String]).returns(T::Array[Tapioca::Gemfile::Gem]) }
|
sig { params(gem_names: T::Array[String]).returns(T::Array[Tapioca::Gemfile::GemSpec]) }
|
||||||
def gems_to_generate(gem_names); end
|
def gems_to_generate(gem_names); end
|
||||||
|
|
||||||
sig { params(eager_load: T::Boolean).void }
|
sig { params(eager_load: T::Boolean).void }
|
||||||
@ -1316,7 +1316,7 @@ class Tapioca::Loader
|
|||||||
def load_bundle(initialize_file, require_file); end
|
def load_bundle(initialize_file, require_file); end
|
||||||
|
|
||||||
sig { params(environment_load: T::Boolean, eager_load: T::Boolean).void }
|
sig { params(environment_load: T::Boolean, eager_load: T::Boolean).void }
|
||||||
def load_rails(environment_load: T.unsafe(nil), eager_load: T.unsafe(nil)); end
|
def load_rails_application(environment_load: T.unsafe(nil), eager_load: T.unsafe(nil)); end
|
||||||
|
|
||||||
private
|
private
|
||||||
|
|
||||||
@ -1329,15 +1329,9 @@ class Tapioca::Loader
|
|||||||
sig { void }
|
sig { void }
|
||||||
def load_rails_engines; end
|
def load_rails_engines; end
|
||||||
|
|
||||||
sig { void }
|
|
||||||
def load_rake; end
|
|
||||||
|
|
||||||
sig { returns(T::Array[T.untyped]) }
|
sig { returns(T::Array[T.untyped]) }
|
||||||
def rails_engines; end
|
def rails_engines; end
|
||||||
|
|
||||||
sig { void }
|
|
||||||
def require_bundle; end
|
|
||||||
|
|
||||||
sig { params(file: T.nilable(String)).void }
|
sig { params(file: T.nilable(String)).void }
|
||||||
def require_helper(file); end
|
def require_helper(file); end
|
||||||
|
|
||||||
@ -10,4 +10,3 @@ module T::InterfaceWrapper::Helpers; end
|
|||||||
module T::Private::Abstract::Hooks; end
|
module T::Private::Abstract::Hooks; end
|
||||||
module T::Private::Methods::MethodHooks; end
|
module T::Private::Methods::MethodHooks; end
|
||||||
module T::Private::Methods::SingletonMethodHooks; end
|
module T::Private::Methods::SingletonMethodHooks; end
|
||||||
module Tapioca::Gemfile::Gem::Specification; end
|
|
||||||
|
|||||||
@ -94,5 +94,5 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/simplecov-cobertura-1
|
|||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/sorbet-runtime-stub-0.2.0/lib"
|
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/sorbet-runtime-stub-0.2.0/lib"
|
||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/thor-1.1.0/lib"
|
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/thor-1.1.0/lib"
|
||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/spoom-1.1.2/lib"
|
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/spoom-1.1.2/lib"
|
||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/tapioca-0.4.25/lib"
|
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/tapioca-0.4.26/lib"
|
||||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/warning-1.2.0/lib"
|
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/warning-1.2.0/lib"
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user