Class: DaedalSL::DisMaxQuery

Inherits:
BlockQuery show all
Defined in:
lib/daedal-sl/dis_max_query.rb

Instance Attribute Summary

Attributes inherited from BlockQuery

#base, #parent

Instance Method Summary collapse

Methods inherited from BlockQuery

build, #method_missing

Constructor Details

#initialize(parent, options) ⇒ DisMaxQuery

Returns a new instance of DisMaxQuery.



4
5
6
7
# File 'lib/daedal-sl/dis_max_query.rb', line 4

def initialize(parent, options)
  @query_type = Daedal::Queries::DisMaxQuery
  super
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class DaedalSL::BlockQuery

Instance Method Details

#queryObject



9
10
11
12
13
# File 'lib/daedal-sl/dis_max_query.rb', line 9

def query
  if (result = yield)
    @base.queries << result
  end
end