Class: DaedalSL::BoolQuery
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) ⇒ BoolQuery
Returns a new instance of BoolQuery.
4
5
6
7
|
# File 'lib/daedal-sl/bool_query.rb', line 4
def initialize(parent, options)
@query_type = Daedal::Queries::BoolQuery
super
end
|
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
in the class DaedalSL::BlockQuery
Instance Method Details
#must ⇒ Object
9
10
11
12
13
|
# File 'lib/daedal-sl/bool_query.rb', line 9
def must
if (result = yield)
@base.must << result
end
end
|
#must_not ⇒ Object
21
22
23
24
25
|
# File 'lib/daedal-sl/bool_query.rb', line 21
def must_not
if (result = yield)
@base.must_not << result
end
end
|
#should ⇒ Object
15
16
17
18
19
|
# File 'lib/daedal-sl/bool_query.rb', line 15
def should
if (result = yield)
@base.should << result
end
end
|