aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/acts/list.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-04-02 09:14:19 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-04-02 09:14:19 +0000
commitc788bcb416f4487f99a9e5dacf9a48623412b034 (patch)
treed03243b9e36f714c73fdf9110d59922e68be58e1 /activerecord/lib/active_record/acts/list.rb
parent3532455404ec8449eee1054e38d1e0db40c63e15 (diff)
downloadrails-c788bcb416f4487f99a9e5dacf9a48623412b034.tar.gz
rails-c788bcb416f4487f99a9e5dacf9a48623412b034.tar.bz2
rails-c788bcb416f4487f99a9e5dacf9a48623412b034.zip
Automatically extend the class which gets a module included with the ClassMethods module if it exists #970 [Lucas Carlson]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1068 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/acts/list.rb')
-rw-r--r--activerecord/lib/active_record/acts/list.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/activerecord/lib/active_record/acts/list.rb b/activerecord/lib/active_record/acts/list.rb
index abd295d4e9..c6a33cf9a0 100644
--- a/activerecord/lib/active_record/acts/list.rb
+++ b/activerecord/lib/active_record/acts/list.rb
@@ -1,11 +1,6 @@
module ActiveRecord
module Acts #:nodoc:
module List #:nodoc:
- def self.append_features(base)
- super
- base.extend(ClassMethods)
- end
-
# This act provides the capabilities for sorting and reordering a number of objects in list.
# The class that has this specified needs to have a "position" column defined as an integer on
# the mapped database table.