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/ordering.rb
2010-11-29 14:38:45 -08:00

20 lines
327 B
Ruby

module Arel
module Nodes
class Ordering < Arel::Nodes::Binary
alias :expr :left
alias :direction :right
def initialize expr, direction = :asc
super
end
def ascending?
direction == :asc
end
def descending?
direction == :desc
end
end
end
end