debian-mirror-gitlab/debian/gems-compat/arel-8.0.0/lib/arel/nodes/ascending.rb

24 lines
301 B
Ruby

# frozen_string_literal: true
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