mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
9 lines
171 B
Ruby
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
|