aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorVitalii Khustochka <xyctka@gmail.com>2010-07-12 14:17:48 +0300
committerJosé Valim <jose.valim@gmail.com>2010-07-13 08:31:55 +0200
commitb75fca9e57423eec81384ff3e35f38fd4f7fe47f (patch)
treef6569ffc4371b7c931a0cd5afe31ec219eb5021f /activerecord/lib/active_record
parentd2fae5f78efd7123b9ce633933f77cbe0e0711a9 (diff)
downloadrails-b75fca9e57423eec81384ff3e35f38fd4f7fe47f.tar.gz
rails-b75fca9e57423eec81384ff3e35f38fd4f7fe47f.tar.bz2
rails-b75fca9e57423eec81384ff3e35f38fd4f7fe47f.zip
Added reorder delegation for ActiveRecord::Base(to be able to overwrite the default_scope ordering in the named scope [#5093 state:resolved]
Signed-off-by: José Valim <jose.valim@gmail.com>
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r--activerecord/lib/active_record/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index c78060c956..400a0adbcf 100644
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -398,7 +398,7 @@ module ActiveRecord #:nodoc:
delegate :find, :first, :last, :all, :destroy, :destroy_all, :exists?, :delete, :delete_all, :update, :update_all, :to => :scoped
delegate :find_each, :find_in_batches, :to => :scoped
- delegate :select, :group, :order, :limit, :joins, :where, :preload, :eager_load, :includes, :from, :lock, :readonly, :having, :create_with, :to => :scoped
+ delegate :select, :group, :order, :reorder, :limit, :joins, :where, :preload, :eager_load, :includes, :from, :lock, :readonly, :having, :create_with, :to => :scoped
delegate :count, :average, :minimum, :maximum, :sum, :calculate, :to => :scoped
# Executes a custom SQL query against your database and returns all the results. The results will