Module: Dry::Configurable::Initializer Private
- Defined in:
- lib/dry/configurable/instance_methods.rb
Overview
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Initializer method which is prepended when ‘Dry::Configurable` is included in a class
Instance Method Summary collapse
- #initialize ⇒ Object private
Instance Method Details
#initialize ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
14 15 16 17 18 |
# File 'lib/dry/configurable/instance_methods.rb', line 14 def initialize(*) @__config__ = self.class.__config_build__(self.class.settings) super end |