Module: Elasticsearch::DSL::Search::BaseCompoundFilterComponent::MethodDelegation

Defined in:
lib/elasticsearch/dsl/search/base_compound_filter_component.rb

Instance Method Summary collapse

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name, *args, &block) ⇒ Object

Looks up the corresponding class for a method being invoked, and initializes it

Raises:

  • (NoMethodError)

    When the corresponding class cannot be found



89
90
91
92
93
94
95
96
97
98
# File 'lib/elasticsearch/dsl/search/base_compound_filter_component.rb', line 89

def method_missing(name, *args, &block)
  klass = Utils.__camelize(name)
  if Filters.const_defined? klass
    @value << Filters.const_get(klass).new(*args, &block)
  elsif @block
    @block.binding.eval('self').send(name, *args, &block)
  else
    super
  end
end