Class: Tire::Search::BoostingQuery
- Inherits:
-
Object
- Object
- Tire::Search::BoostingQuery
- Defined in:
- lib/tire/search/query.rb
Instance Method Summary collapse
-
#initialize(options = {}, &block) ⇒ BoostingQuery
constructor
A new instance of BoostingQuery.
- #negative(&block) ⇒ Object
- #positive(&block) ⇒ Object
- #to_hash ⇒ Object
Constructor Details
#initialize(options = {}, &block) ⇒ BoostingQuery
Returns a new instance of BoostingQuery.
255 256 257 258 259 |
# File 'lib/tire/search/query.rb', line 255 def initialize(={}, &block) = @value = {} block.arity < 1 ? self.instance_eval(&block) : block.call(self) if block_given? end |
Instance Method Details
#negative(&block) ⇒ Object
266 267 268 269 |
# File 'lib/tire/search/query.rb', line 266 def negative(&block) (@value[:negative] ||= []) << Query.new(&block).to_hash @value end |
#positive(&block) ⇒ Object
261 262 263 264 |
# File 'lib/tire/search/query.rb', line 261 def positive(&block) (@value[:positive] ||= []) << Query.new(&block).to_hash @value end |
#to_hash ⇒ Object
271 272 273 |
# File 'lib/tire/search/query.rb', line 271 def to_hash @value.update() end |