module Dry::Configurable
def self.loader
def self.loader @loader ||= Zeitwerk::Loader.new.tap do |loader| root = File.expand_path("..", __dir__) loader.tag = "dry-configurable" loader.inflector = Zeitwerk::GemInflector.new("#{root}/dry-configurable.rb") loader.push_dir(root) loader.ignore( "#{root}/dry-configurable.rb", "#{root}/dry/configurable/{constants,errors,version}.rb" ) loader.inflector.inflect("dsl" => "DSL") end end