Method: Dry::System::Config::ComponentDirs#method_missing
- Defined in:
- lib/dry/system/config/component_dirs.rb
#method_missing(name) ⇒ Object (private)
271 272 273 274 275 276 277 |
# File 'lib/dry/system/config/component_dirs.rb', line 271 def method_missing(name, ...) if defaults.respond_to?(name) defaults.public_send(name, ...) else super end end |