Method: Elasticsearch::Model::Proxy::Base#respond_to_missing?
- Defined in:
- lib/elasticsearch/model/proxy.rb
#respond_to_missing?(method_name, include_private = false) ⇒ Boolean
Respond to methods from ‘@target`
125 126 127 |
# File 'lib/elasticsearch/model/proxy.rb', line 125 def respond_to_missing?(method_name, include_private = false) target.respond_to?(method_name) || super end |