Class: DaedalSL::DisMaxQuery
- Inherits:
-
BlockQuery
- Object
- BlockQuery
- DaedalSL::DisMaxQuery
- Defined in:
- lib/daedal-sl/dis_max_query.rb
Instance Attribute Summary
Attributes inherited from BlockQuery
Instance Method Summary collapse
-
#initialize(parent, options) ⇒ DisMaxQuery
constructor
A new instance of DisMaxQuery.
- #query ⇒ Object
Methods inherited from BlockQuery
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, ) @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
#query ⇒ Object
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 |