1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/lib/arel/nodes/equality.rb
2010-09-06 17:39:09 -07:00

9 lines
171 B
Ruby

module Arel
module Nodes
class Equality < Arel::Nodes::Binary
def operator; :== end
alias :operand1 :left
alias :operand2 :right
end
end
end