Method: Macker::Config#method_missing
- Defined in:
- lib/macker/config.rb
#method_missing(method, *args, &block) ⇒ Object
Send missing methods to the OpenStruct configuration.
30 31 32 |
# File 'lib/macker/config.rb', line 30 def method_missing(method, *args, &block) @config.send(method, *args, &block) end |