Method: ConfigDSL::Memory::MemoryLayer#method_missing
- Defined in:
- lib/configdsl.rb
#method_missing(meth, *args, &block) ⇒ Object
Allow methods invocation to read values
35 36 37 38 |
# File 'lib/configdsl.rb', line 35 def method_missing(meth, *args, &block) return self[meth] if has_key?(meth) super end |