Sha256: 3c6f013a507badee52ef1c9995db84408c9fa08000ae4ef808e374a030d4983d
Contents?: true
Size: 1.35 KB
Versions: 7
Compression:
Stored size: 1.35 KB
Contents
# frozen_string_literal: true require "dry/system/constants" module Dry module System # Default manual registration implementation # # This is currently configured by default for every System::Container. # Manual registrar objects are responsible for loading files from configured # manual registration paths, which should hold code to explicitly register # certain objects with the container. # # @api private class ManualRegistrar attr_reader :container attr_reader :config def initialize(container) @container = container @config = container.config end # @api private def finalize! ::Dir[registrations_dir.join(RB_GLOB)].sort.each do |file| call(File.basename(file, RB_EXT)) end end # @api private def call(name) name = name.respond_to?(:root_key) ? name.root_key.to_s : name require(root.join(config.registrations_dir, name)) end def file_exists?(name) name = name.respond_to?(:root_key) ? name.root_key.to_s : name File.exist?(File.join(registrations_dir, "#{name}#{RB_EXT}")) end private # @api private def registrations_dir root.join(config.registrations_dir) end # @api private def root container.root end end end end
Version data entries
7 entries across 7 versions & 1 rubygems