Method: Xmvc::Config::ConfigBlock#method_missing

Defined in:
lib/xmvc/config.rb

#method_missing(method, *args) ⇒ Object

Assign args as the value of the entry keyed by method.

:api: private



183
184
185
# File 'lib/xmvc/config.rb', line 183

def method_missing(method, *args)
  @klass[method] = *args
end