module ArelExtensions::Attributes

Public Instance Methods

!=(other) click to toggle source
# File lib/arel_extensions/attributes.rb, line 25
def !=(other)
  Arel::Nodes::NotEqual.new self, Arel.quoted(other, self)
end
==(other) click to toggle source
# File lib/arel_extensions/attributes.rb, line 21
def ==(other)
  Arel::Nodes::Equality.new self, Arel.quoted(other, self)
end