brew vendor-gems: commit updates.
This commit is contained in:
parent
ae8fb6c8a7
commit
a15cd4bdd5
@ -8,7 +8,7 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/i18n-1.8.3/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/minitest-5.14.1/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/thread_safe-0.3.6/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/tzinfo-1.2.7/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/zeitwerk-2.3.0/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/zeitwerk-2.3.1/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/activesupport-6.0.3.2/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ast-2.4.1/lib"
|
||||
$:.unshift "#{path}/"
|
||||
@ -25,7 +25,7 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/tins-1.25.0/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/term-ansicolor-1.7.1/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/thor-1.0.1/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/coveralls-0.8.23/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/diff-lcs-1.3/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/diff-lcs-1.4.2/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/extensions/universal-darwin-19/2.6.0/unf_ext-0.0.7.7"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/unf_ext-0.0.7.7/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/unf-0.1.4/lib"
|
||||
@ -62,7 +62,7 @@ $:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-3.9.0/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-its-1.3.0/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-retry-0.6.2/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rspec-wait-0.0.9/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-ast-0.0.3/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-ast-0.1.0/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/ruby-progressbar-1.10.1/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/unicode-display_width-1.7.0/lib"
|
||||
$:.unshift "#{path}/../#{ruby_engine}/#{ruby_version}/gems/rubocop-0.86.0/lib"
|
||||
|
||||
@ -1,33 +0,0 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module Kernel
|
||||
module_function
|
||||
|
||||
# We cannot decorate with prepend + super because Kernel has already been
|
||||
# included in Object, and changes in ancestors don't get propagated into
|
||||
# already existing ancestor chains.
|
||||
alias_method :zeitwerk_original_require, :require
|
||||
|
||||
# @param path [String]
|
||||
# @return [Boolean]
|
||||
def require(path)
|
||||
if loader = Zeitwerk::Registry.loader_for(path)
|
||||
if path.end_with?(".rb")
|
||||
zeitwerk_original_require(path).tap do |required|
|
||||
loader.on_file_autoloaded(path) if required
|
||||
end
|
||||
else
|
||||
loader.on_dir_autoloaded(path)
|
||||
end
|
||||
else
|
||||
zeitwerk_original_require(path).tap do |required|
|
||||
if required
|
||||
realpath = $LOADED_FEATURES.last
|
||||
if loader = Zeitwerk::Registry.loader_for(realpath)
|
||||
loader.on_file_autoloaded(realpath)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
64
Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/zeitwerk-2.3.1/lib/zeitwerk/kernel.rb
vendored
Normal file
64
Library/Homebrew/vendor/bundle/ruby/2.6.0/gems/zeitwerk-2.3.1/lib/zeitwerk/kernel.rb
vendored
Normal file
@ -0,0 +1,64 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module Kernel
|
||||
module_function
|
||||
|
||||
# We are going to decorate Kerner#require with two goals.
|
||||
#
|
||||
# First, by intercepting Kernel#require calls, we are able to autovivify
|
||||
# modules on required directories, and also do internal housekeeping when
|
||||
# managed files are loaded.
|
||||
#
|
||||
# On the other hand, if you publish a new version of a gem that is now managed
|
||||
# by Zeitwerk, client code can reference directly your classes and modules and
|
||||
# should not require anything. But if someone has legacy require calls around,
|
||||
# they will work as expected, and in a compatible way.
|
||||
#
|
||||
# We cannot decorate with prepend + super because Kernel has already been
|
||||
# included in Object, and changes in ancestors don't get propagated into
|
||||
# already existing ancestor chains.
|
||||
alias_method :zeitwerk_original_require, :require
|
||||
|
||||
# @param path [String]
|
||||
# @return [Boolean]
|
||||
def require(path)
|
||||
if loader = Zeitwerk::Registry.loader_for(path)
|
||||
if path.end_with?(".rb")
|
||||
zeitwerk_original_require(path).tap do |required|
|
||||
loader.on_file_autoloaded(path) if required
|
||||
end
|
||||
else
|
||||
loader.on_dir_autoloaded(path)
|
||||
end
|
||||
else
|
||||
zeitwerk_original_require(path).tap do |required|
|
||||
if required
|
||||
realpath = $LOADED_FEATURES.last
|
||||
if loader = Zeitwerk::Registry.loader_for(realpath)
|
||||
loader.on_file_autoloaded(realpath)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
# By now, I have seen no way so far to decorate require_relative.
|
||||
#
|
||||
# For starters, at least in CRuby, require_relative does not delegate to
|
||||
# require. Both require and require_relative delegate the bulk of their work
|
||||
# to an internal C function called rb_require_safe. So, our require wrapper is
|
||||
# not executed.
|
||||
#
|
||||
# On the other hand, we cannot use the aliasing technique above because
|
||||
# require_relative receives a path relative to the directory of the file in
|
||||
# which the call is performed. If a wrapper here invoked the original method,
|
||||
# Ruby would resolve the relative path taking lib/zeitwerk as base directory.
|
||||
#
|
||||
# A workaround could be to extract the base directory from caller_locations,
|
||||
# but what if someone else decorated require_relative before us? You can't
|
||||
# really know with certainty where's the original call site in the stack.
|
||||
#
|
||||
# However, the main use case for require_relative is to load files from your
|
||||
# own project. Projects managed by Zeitwerk don't do this for files managed by
|
||||
# Zeitwerk, precisely.
|
||||
end
|
||||
@ -464,7 +464,7 @@ module Zeitwerk
|
||||
# require "zeitwerk"
|
||||
# loader = Zeitwerk::Loader.new
|
||||
# loader.tag = File.basename(__FILE__, ".rb")
|
||||
# loader.inflector = Zeitwerk::GemInflector.new
|
||||
# loader.inflector = Zeitwerk::GemInflector.new(__FILE__)
|
||||
# loader.push_dir(__dir__)
|
||||
#
|
||||
# except that this method returns the same object in subsequent calls from
|
||||
@ -616,7 +616,10 @@ module Zeitwerk
|
||||
# $LOADED_FEATURES stores real paths since Ruby 2.4.4. We set and save the
|
||||
# real path to be able to delete it from $LOADED_FEATURES on unload, and to
|
||||
# be able to do a lookup later in Kernel#require for manual require calls.
|
||||
realpath = File.realpath(abspath)
|
||||
#
|
||||
# We freeze realpath because that saves allocations in Module#autoload.
|
||||
# See #125.
|
||||
realpath = File.realpath(abspath).freeze
|
||||
parent.autoload(cname, realpath)
|
||||
if logger
|
||||
if ruby?(realpath)
|
||||
@ -719,8 +722,13 @@ module Zeitwerk
|
||||
def ls(dir)
|
||||
Dir.foreach(dir) do |basename|
|
||||
next if basename.start_with?(".")
|
||||
|
||||
abspath = File.join(dir, basename)
|
||||
yield basename, abspath unless ignored_paths.member?(abspath)
|
||||
next if ignored_paths.member?(abspath)
|
||||
|
||||
# We freeze abspath because that saves allocations when passed later to
|
||||
# File methods. See #125.
|
||||
yield basename, abspath.freeze
|
||||
end
|
||||
end
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
module Zeitwerk
|
||||
VERSION = "2.3.0"
|
||||
VERSION = "2.3.1"
|
||||
end
|
||||
Loading…
x
Reference in New Issue
Block a user