Class: ThinkingSphinx::Search::Query
- Inherits:
-
Object
- Object
- ThinkingSphinx::Search::Query
- Defined in:
- lib/thinking_sphinx/search/query.rb
Constant Summary collapse
- DEFAULT_TOKEN =
/[\p{Word}\\][\p{Word}\\@]+/
Instance Attribute Summary collapse
-
#conditions ⇒ Object
readonly
Returns the value of attribute conditions.
-
#keywords ⇒ Object
readonly
Returns the value of attribute keywords.
-
#star ⇒ Object
readonly
Returns the value of attribute star.
Instance Method Summary collapse
-
#initialize(keywords = '', conditions = {}, star = false) ⇒ Query
constructor
A new instance of Query.
- #to_s ⇒ Object
Constructor Details
#initialize(keywords = '', conditions = {}, star = false) ⇒ Query
Returns a new instance of Query.
8 9 10 |
# File 'lib/thinking_sphinx/search/query.rb', line 8 def initialize(keywords = '', conditions = {}, star = false) @keywords, @conditions, @star = keywords, conditions, star end |
Instance Attribute Details
#conditions ⇒ Object (readonly)
Returns the value of attribute conditions.
6 7 8 |
# File 'lib/thinking_sphinx/search/query.rb', line 6 def conditions @conditions end |
#keywords ⇒ Object (readonly)
Returns the value of attribute keywords.
6 7 8 |
# File 'lib/thinking_sphinx/search/query.rb', line 6 def keywords @keywords end |
#star ⇒ Object (readonly)
Returns the value of attribute star.
6 7 8 |
# File 'lib/thinking_sphinx/search/query.rb', line 6 def star @star end |
Instance Method Details
#to_s ⇒ Object
12 13 14 15 16 17 18 |
# File 'lib/thinking_sphinx/search/query.rb', line 12 def to_s (star_keyword(keywords || '') + ' ' + conditions.keys.collect { |key| next if conditions[key].blank? "@#{key} #{star_keyword conditions[key], key}" }.join(' ')).strip end |