Method: Brief::DocumentMapper::Query#method_missing
- Defined in:
- lib/brief/document_mapper.rb
#method_missing(meth, *args, &block) ⇒ Object
135 136 137 138 139 140 141 |
# File 'lib/brief/document_mapper.rb', line 135 def method_missing(meth, *args, &block) if all.respond_to?(meth) all.send(meth, *args, &block) else super end end |