Module: OpenSearch::DSL::Search::BaseCompoundFilterComponent::MethodDelegation

Defined in:
lib/opensearch/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



111
112
113
114
115
116
117
118
# File 'lib/opensearch/dsl/search/base_compound_filter_component.rb', line 111

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