Method: Sunspot::Query::BoostQuery#to_boolean_phrase
- Defined in:
- lib/sunspot/query/boost_query.rb
#to_boolean_phrase ⇒ Object
15 16 17 18 19 20 21 |
# File 'lib/sunspot/query/boost_query.rb', line 15 def to_boolean_phrase if @boost.is_a?(FunctionQuery) "#{@boost}" else "#{super}^#{@boost}" end end |