aboutsummaryrefslogtreecommitdiffstats
path: root/lib/active_relation/relations/order.rb
blob: e6395aecd7607408beb5080336fc69ec4be89cff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
module ActiveRelation
  class Order < Compound
    attr_reader :orders

    def initialize(relation, *orders)
      @relation, @orders = relation, orders
    end

    def ==(other)
      relation == other.relation and
      orders   == other.orders
    end

    def descend(&block)
      Order.new(relation.descend(&block), *orders.collect(&block))
    end
  end
end