1 2 3 4 5 6 7 8 9 10 11 12 13
module Arel class Alias < Compound attr_reader :alias def initialize(relation) @relation = relation end def ==(other) self.equal? other end end end