Class: Arel::Nodes::TSRank
- Inherits:
-
Node
- Object
- Node
- Arel::Nodes::TSRank
- Defined in:
- lib/arel/nodes/ts_rank.rb
Instance Attribute Summary collapse
-
#tsquery ⇒ Object
readonly
Returns the value of attribute tsquery.
-
#tsvector ⇒ Object
readonly
Returns the value of attribute tsvector.
Instance Method Summary collapse
-
#initialize(tsvector, tsquery) ⇒ TSRank
constructor
A new instance of TSRank.
Constructor Details
#initialize(tsvector, tsquery) ⇒ TSRank
Returns a new instance of TSRank.
7 8 9 10 |
# File 'lib/arel/nodes/ts_rank.rb', line 7 def initialize(tsvector, tsquery) @tsvector = tsvector @tsquery = tsquery end |
Instance Attribute Details
#tsquery ⇒ Object (readonly)
Returns the value of attribute tsquery.
5 6 7 |
# File 'lib/arel/nodes/ts_rank.rb', line 5 def tsquery @tsquery end |
#tsvector ⇒ Object (readonly)
Returns the value of attribute tsvector.
5 6 7 |
# File 'lib/arel/nodes/ts_rank.rb', line 5 def tsvector @tsvector end |