Class: ArelExtensions::Nodes::Soundex

Inherits:
Function
  • Object
show all
Includes:
Arel::Expressions, Comparators
Defined in:
lib/arel_extensions/nodes/soundex.rb

Constant Summary collapse

RETURN_TYPE =
:string

Constants inherited from Function

Function::MBSTRING

Instance Method Summary collapse

Methods included from Comparators

#!~, #<, #<=, #=~, #>, #>=

Methods inherited from Function

#as, #convert_to_date_node, #convert_to_datetime_node, #convert_to_node, #convert_to_number, #convert_to_string_node, #expr, #left, #return_type, #right, #type_of_attribute

Methods included from Predications

#cast, #convert_to_node, #imatches, #in, #matches, #not_in, #when

Instance Method Details

#!=(other) ⇒ Object



13
14
15
# File 'lib/arel_extensions/nodes/soundex.rb', line 13

def !=(other)
  Arel::Nodes::NotEqual.new self, Arel::Nodes.build_quoted(other, self)
end

#==(other) ⇒ Object



9
10
11
# File 'lib/arel_extensions/nodes/soundex.rb', line 9

def ==(other)
  Arel::Nodes::Equality.new self, Arel::Nodes.build_quoted(other, self)
end