class Arel::Nodes::Ascending

Public Instance Methods

ascending?() click to toggle source
# File lib/arel/nodes/ascending.rb, line 14
def ascending?
  true
end
descending?() click to toggle source
# File lib/arel/nodes/ascending.rb, line 18
def descending?
  false
end
direction() click to toggle source
# File lib/arel/nodes/ascending.rb, line 10
def direction
  :asc
end
reverse() click to toggle source
# File lib/arel/nodes/ascending.rb, line 6
def reverse
  Descending.new(expr)
end