module Arel::Predications
Public Instance Methods
dmetaphone(text, dictionary = 'simple')
click to toggle source
# File lib/pg_searchable/arel/predications.rb, line 13 def dmetaphone(text, dictionary = 'simple') Nodes::Dmetaphone.new(self, text, dictionary) end
tgrm(text)
click to toggle source
# File lib/pg_searchable/arel/predications.rb, line 5 def tgrm(text) Nodes::Tgrm.new(self, text) end
tsearch(text, dictionary = 'simple')
click to toggle source
# File lib/pg_searchable/arel/predications.rb, line 9 def tsearch(text, dictionary = 'simple') Nodes::Tsearch.new(self, text, dictionary) end