aboutsummaryrefslogblamecommitdiffstats
path: root/lib/arel/nodes/ascending.rb
blob: bca00a833911f15a17c08456319c061e929cf790 (plain) (tree)






















                              
module Arel
  module Nodes
    class Ascending < Ordering

      def reverse
        Descending.new(expr)
      end

      def direction
        :asc
      end

      def ascending?
        true
      end

      def descending?
        false
      end

    end
  end
end