Method: Dry::System::Config::ComponentDir#method_missing
- Defined in:
- lib/dry/system/config/component_dir.rb
#method_missing(name) ⇒ Object (private)
214 215 216 217 218 219 220 |
# File 'lib/dry/system/config/component_dir.rb', line 214 def method_missing(name, ...) if config.respond_to?(name) config.public_send(name, ...) else super end end |