blob: c6fdade006203faf755b35f93c6425566d1b4a4c (
plain) (
tree)
|
|
# frozen_string_literal: true
require "active_support/core_ext/string/inflections"
module ActiveSupport
module Dependencies
module ZeitwerkIntegration # :nodoc: all
module Decorations
def clear
Dependencies.unload_interlock do
Rails.autoloaders.main.reload
end
end
def constantize(cpath)
ActiveSupport::Inflector.constantize(cpath)
end
def safe_constantize(cpath)
ActiveSupport::Inflector.safe_constantize(cpath)
end
def autoloaded_constants
cpaths = []
Rails.autoloaders.each do |autoloader|
cpaths.concat(autoloader.loaded_cpaths.to_a)
end
cpaths
end
def autoloaded?(object)
cpath = object.is_a?(Module) ? object.name : object.to_s
Rails.autoloaders.any? { |autoloader| autoloader.loaded?(cpath) }
end
def verbose=(verbose)
l = verbose ? logger || Rails.logger : nil
Rails.autoloaders.each { |autoloader| autoloader.logger = l }
end
def unhook!
:no_op
end
end
module Inflector
def self.camelize(basename, _abspath)
basename.camelize
end
end
class << self
def take_over
setup_autoloaders
freeze_autoload_paths
decorate_dependencies
end
private
def setup_autoloaders
Dependencies.autoload_paths.each do |autoload_path|
# Zeitwerk only accepts existing directories in `push_dir` to
# prevent misconfigurations.
next unless File.directory?(autoload_path)
if autoload_once?(autoload_path)
Rails.autoloaders.once.push_dir(autoload_path)
else
Rails.autoloaders.main.push_dir(autoload_path)
end
end
Rails.autoloaders.each(&:setup)
end
def autoload_once?(autoload_path)
Dependencies.autoload_once_paths.include?(autoload_path)
end
def freeze_autoload_paths
Dependencies.autoload_paths.freeze
Dependencies.autoload_once_paths.freeze
end
def decorate_dependencies
Dependencies.unhook!
Dependencies.singleton_class.prepend(Decorations)
Object.class_eval { alias_method :require_dependency, :require }
end
end
end
end
end
|