class Arel::Nodes::Ascending
Public Instance Methods
ascending?()
click to toggle source
# File lib/arel/nodes/ascending.rb, line 13 def ascending? true end
descending?()
click to toggle source
# File lib/arel/nodes/ascending.rb, line 17 def descending? false end
direction()
click to toggle source
# File lib/arel/nodes/ascending.rb, line 9 def direction :asc end
reverse()
click to toggle source
# File lib/arel/nodes/ascending.rb, line 5 def reverse Descending.new(expr) end