Sha256: aaed72d47e10d7b80643ae27c012902b69a36d609daa87f1fab96cbb027f539a
Contents?: true
Size: 1.74 KB
Versions: 4
Compression:
Stored size: 1.74 KB
Contents
# frozen_string_literal: true module Zeitwerk # @private class GemLoader < Loader # Users should not create instances directly, the public interface is # `Zeitwerk::Loader.for_gem`. private_class_method :new # @private # @sig (String, bool) -> Zeitwerk::GemLoader def self._new(root_file, warn_on_extra_files:) new(root_file, warn_on_extra_files: warn_on_extra_files) end # @sig (String, bool) -> void def initialize(root_file, warn_on_extra_files:) super() @tag = File.basename(root_file, ".rb") @inflector = GemInflector.new(root_file) @root_file = File.expand_path(root_file) @lib = File.dirname(root_file) @warn_on_extra_files = warn_on_extra_files push_dir(@lib) end # @sig () -> void def setup warn_on_extra_files if @warn_on_extra_files super end private # @sig () -> void def warn_on_extra_files expected_namespace_dir = @root_file.delete_suffix(".rb") ls(@lib) do |basename, abspath| next if abspath == @root_file next if abspath == expected_namespace_dir basename_without_ext = basename.delete_suffix(".rb") cname = inflector.camelize(basename_without_ext, abspath) ftype = dir?(abspath) ? "directory" : "file" warn(<<~EOS) WARNING: Zeitwerk defines the constant #{cname} after the #{ftype} #{abspath} To prevent that, please configure the loader to ignore it: loader.ignore("\#{__dir__}/#{basename}") Otherwise, there is a flag to silence this warning: Zeitwerk::Loader.for_gem(warn_on_extra_files: false) EOS end end end end
Version data entries
4 entries across 4 versions & 2 rubygems