aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record/wrappings.rb
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-04-02 09:29:43 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-04-02 09:29:43 +0000
commit7c8d2f28e16958b16812b5fef3d7eca8b640e445 (patch)
treecddf56dc4b0fb169d6e4f48e359e4a91915f8feb /activerecord/lib/active_record/wrappings.rb
parentc788bcb416f4487f99a9e5dacf9a48623412b034 (diff)
downloadrails-7c8d2f28e16958b16812b5fef3d7eca8b640e445.tar.gz
rails-7c8d2f28e16958b16812b5fef3d7eca8b640e445.tar.bz2
rails-7c8d2f28e16958b16812b5fef3d7eca8b640e445.zip
Removed broken attempt to DRY module ClassMethod #970
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1069 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activerecord/lib/active_record/wrappings.rb')
-rw-r--r--activerecord/lib/active_record/wrappings.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/lib/active_record/wrappings.rb b/activerecord/lib/active_record/wrappings.rb
index 1284450994..01976417b7 100644
--- a/activerecord/lib/active_record/wrappings.rb
+++ b/activerecord/lib/active_record/wrappings.rb
@@ -9,6 +9,11 @@ module ActiveRecord
end
end
+ def self.append_features(base)
+ super
+ base.extend(ClassMethods)
+ end
+
class AbstractWrapper #:nodoc:
def self.wrap(attribute, record_binding) #:nodoc:
%w( before_save after_save after_initialize ).each do |callback|