class Dry::Schema::Config
@api public
@see DSL#configure
Schema definition configuration class
def inspect
- Api: - private
def inspect "#<#{self.class} #{to_h.map { |k, v| ["#{k}=", v.inspect] }.map(&:join).join(" ")}>" end
def method_missing(meth, *args, &block)
- Api: - private
def method_missing(meth, *args, &block) super unless config.respond_to?(meth) config.public_send(meth, *args) end
def respond_to_missing?(meth, include_private = false)
- Api: - private
def respond_to_missing?(meth, include_private = false) super || config.respond_to?(meth, include_private) end