Method: Cluster::Configuration.method_missing
- Defined in:
- lib/cluster/configuration.rb
.method_missing(meth, *params) ⇒ Object
37 38 39 40 41 42 43 44 |
# File 'lib/cluster/configuration.rb', line 37 def method_missing(meth, *params) field = meth.to_s if .respond_to? field .send(field) else super end end |