module Dry::Configurable

def configure

Other tags:
    Api: - public

Returns:
  • (Dry::Configurable::Config) -

Other tags:
    Yield: -
def configure
  raise FrozenConfig, 'Cannot modify frozen config' if frozen?
  yield(config) if block_given?
  self
end