Sha256: 748f106ec3821e20a8295b95357c0740ffe9aa5b79620be4aad38289a2a70972
Contents?: true
Size: 1.75 KB
Versions: 3
Compression:
Stored size: 1.75 KB
Contents
# frozen_string_literal: true require "dry/inflector" module Dry module System # Default component loader implementation # # This class is configured by default for every System::Container. You can # provide your own and use it in your containers too. # # @example # class MyLoader < Dry::System::Loader # def call(*args) # constant.build(*args) # end # end # # class MyApp < Dry::System::Container # configure do |config| # # ... # config.loader MyLoader # end # end # # @api public class Loader # @!attribute [r] path # @return [String] Path to component's file attr_reader :path # @!attribute [r] inflector # @return [Object] Inflector backend attr_reader :inflector # @api private def initialize(path, inflector = Dry::Inflector.new) @path = path @inflector = inflector end # Returns component's instance # # Provided optional args are passed to object's constructor # # @param [Array] args Optional constructor args # # @return [Object] # # @api public def call(*args) if singleton?(constant) constant.instance(*args) else constant.new(*args) end end ruby2_keywords(:call) if respond_to?(:ruby2_keywords, true) # Return component's class constant # # @return [Class] # # @api public def constant inflector.constantize(inflector.camelize(path)) end private # @api private def singleton?(constant) constant.respond_to?(:instance) && !constant.respond_to?(:new) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
dry-system-0.18.2 | lib/dry/system/loader.rb |
dry-system-0.18.1 | lib/dry/system/loader.rb |
dry-system-0.18.0 | lib/dry/system/loader.rb |