module Dry::Configurable

def method_missing(method, *args, &block)

Other tags:
    Private: -
def method_missing(method, *args, &block)
  _reader_attributes.include?(method) ? config.public_send(method, *args, &block) : super
end