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

10 lines
171 B
Ruby
Raw Normal View History

2010-08-12 18:22:26 -04:00
module Arel
module Nodes
2010-08-16 20:26:12 -04:00
class Equality < Arel::Nodes::Binary
2010-09-06 20:39:09 -04:00
def operator; :== end
alias :operand1 :left
alias :operand2 :right
2010-08-12 18:22:26 -04:00
end
end
end