Method: SuperSettings::Configuration#call
- Defined in:
- lib/super_settings/configuration.rb
#call ⇒ 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.
Call the block deferred during initialization.
201 202 203 204 205 |
# File 'lib/super_settings/configuration.rb', line 201 def call while (block = @deferred_configs.shift) block&.call(self) end end |