Merge pull request #16035 from Homebrew/dependabot/bundler/Library/Homebrew/zeitwerk-2.6.12

build(deps): bump zeitwerk from 2.6.11 to 2.6.12 in /Library/Homebrew
This commit is contained in:
Mike McQuaid 2023-09-26 11:57:15 +01:00 committed by GitHub
commit 9d23bcc871
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 9 additions and 6 deletions

View File

@ -179,7 +179,7 @@ GEM
yard-sorbet (0.6.1) yard-sorbet (0.6.1)
sorbet-runtime (>= 0.5) sorbet-runtime (>= 0.5)
yard (>= 0.9) yard (>= 0.9)
zeitwerk (2.6.11) zeitwerk (2.6.12)
PLATFORMS PLATFORMS
aarch64-linux aarch64-linux

View File

@ -110,6 +110,8 @@ class Zeitwerk::Loader
def autoload_subdir(parent, cname, subdir); end def autoload_subdir(parent, cname, subdir); end
def autoloaded_dirs; end def autoloaded_dirs; end
def autoloads; end def autoloads; end
def define_autoload(parent, cname, abspath); end
def define_autoloads_for_dir(dir, parent); end
def dirs_autoload_monitor; end def dirs_autoload_monitor; end
def mutex; end def mutex; end
def namespace_dirs; end def namespace_dirs; end
@ -117,8 +119,6 @@ class Zeitwerk::Loader
def raise_if_conflicting_directory(dir); end def raise_if_conflicting_directory(dir); end
def register_explicit_namespace(cpath); end def register_explicit_namespace(cpath); end
def run_on_unload_callbacks(cpath, value, abspath); end def run_on_unload_callbacks(cpath, value, abspath); end
def set_autoload(parent, cname, abspath); end
def set_autoloads_in_dir(dir, parent); end
def shadowed_file?(file); end def shadowed_file?(file); end
def shadowed_files; end def shadowed_files; end
def to_unload; end def to_unload; end
@ -138,13 +138,16 @@ end
module Zeitwerk::Loader::Callbacks module Zeitwerk::Loader::Callbacks
include ::Zeitwerk::RealModName include ::Zeitwerk::RealModName
extend ::Zeitwerk::Internal
def on_dir_autoloaded(dir); end def __on_dir_autoloaded(dir); end
def on_file_autoloaded(file); end def __on_file_autoloaded(file); end
def on_namespace_loaded(namespace); end def on_namespace_loaded(namespace); end
private private
def on_dir_autoloaded(dir); end
def on_file_autoloaded(file); end
def run_on_load_callbacks(cpath, value, abspath); end def run_on_load_callbacks(cpath, value, abspath); end
end end

View File

@ -31,7 +31,7 @@ $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/i18n-1.14.1/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/i18n-1.14.1/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/minitest-5.20.0/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/minitest-5.20.0/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/tzinfo-2.0.6/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/tzinfo-2.0.6/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/zeitwerk-2.6.11/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/zeitwerk-2.6.12/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/activesupport-6.1.7.6/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/activesupport-6.1.7.6/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/public_suffix-5.0.3/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/public_suffix-5.0.3/lib")
$:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/addressable-2.8.5/lib") $:.unshift File.expand_path("#{__dir__}/../#{RUBY_ENGINE}/#{Gem.ruby_api_version}/gems/addressable-2.8.5/lib")