aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/order_predications.rb
diff options
context:
space:
mode:
authorErnie Miller <ernie@metautonomo.us>2011-06-14 17:43:22 -0400
committerErnie Miller <ernie@metautonomo.us>2011-06-15 09:18:26 -0400
commitba3578a22f824da3478b6dceb100deb9f41a56e9 (patch)
tree8caaa5ad9018fe61c838907cd0854a68a55f91cd /lib/arel/order_predications.rb
parent593002080cbcbb6e14acf3bc909aab819811f215 (diff)
downloadrails-ba3578a22f824da3478b6dceb100deb9f41a56e9.tar.gz
rails-ba3578a22f824da3478b6dceb100deb9f41a56e9.tar.bz2
rails-ba3578a22f824da3478b6dceb100deb9f41a56e9.zip
Break Ordering into Ascending/Descending nodes, allow reversal
Diffstat (limited to 'lib/arel/order_predications.rb')
-rw-r--r--lib/arel/order_predications.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/arel/order_predications.rb b/lib/arel/order_predications.rb
index af163c9454..153fcffb41 100644
--- a/lib/arel/order_predications.rb
+++ b/lib/arel/order_predications.rb
@@ -2,11 +2,11 @@ module Arel
module OrderPredications
def asc
- Nodes::Ordering.new self, :asc
+ Nodes::Ascending.new self
end
def desc
- Nodes::Ordering.new self, :desc
+ Nodes::Descending.new self
end
end