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



85
86
87
88
89
90
91
92
# File 'lib/elasticsearch/dsl/search/base_compound_filter_component.rb', line 85

def method_missing(name, *args, &block)
  klass = Utils.__camelize(name)
  if Filters.const_defined? klass
    @value << Filters.const_get(klass).new(*args, &block)
  else
    raise NoMethodError, "undefined method '#{name}' for #{self}"
  end
end