Method: Elasticsearch::Model::Response::Records#method_missing
- Defined in:
- lib/elasticsearch/model/response/records.rb
#method_missing(method_name, *arguments) ⇒ Object
Delegate methods to ‘@records`
76 77 78 |
# File 'lib/elasticsearch/model/response/records.rb', line 76 def method_missing(method_name, *arguments) records.respond_to?(method_name) ? records.__send__(method_name, *arguments) : super end |