aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorJoshua Peek <josh@joshpeek.com>2008-07-16 20:23:44 -0500
committerJoshua Peek <josh@joshpeek.com>2008-07-16 20:23:44 -0500
commitd8a72b32c5b0c32abf257f05b89bad7d21f178ec (patch)
treed4e9fb6ec455589164459cdc2f5ae35765c95c72 /activesupport
parent40dbebba28bfa1c55737da7354542c3bdca4e1a1 (diff)
downloadrails-d8a72b32c5b0c32abf257f05b89bad7d21f178ec.tar.gz
rails-d8a72b32c5b0c32abf257f05b89bad7d21f178ec.tar.bz2
rails-d8a72b32c5b0c32abf257f05b89bad7d21f178ec.zip
Revert "Run callbacks from object's metaclass"
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/CHANGELOG2
-rw-r--r--activesupport/lib/active_support/callbacks.rb10
-rw-r--r--activesupport/test/callbacks_test.rb24
3 files changed, 1 insertions, 35 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index aa383cd166..8d3b136d80 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,7 +1,5 @@
*Edge*
-* Run callbacks from object's metaclass [Josh Peek]
-
* Add Array#in_groups which splits or iterates over the array in specified number of groups. #579. [Adrian Mugnolo] Example:
a = (1..10).to_a
diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb
index f125a56246..9c59b7ac76 100644
--- a/activesupport/lib/active_support/callbacks.rb
+++ b/activesupport/lib/active_support/callbacks.rb
@@ -269,15 +269,7 @@ module ActiveSupport
# pass
# stop
def run_callbacks(kind, options = {}, &block)
- callback_chain_method = "#{kind}_callback_chain"
-
- # Meta class inherits Class so we don't have to merge it in 1.9
- if RUBY_VERSION >= '1.9'
- metaclass.send(callback_chain_method).run(self, options, &block)
- else
- callbacks = self.class.send(callback_chain_method) | metaclass.send(callback_chain_method)
- callbacks.run(self, options, &block)
- end
+ self.class.send("#{kind}_callback_chain").run(self, options, &block)
end
end
end
diff --git a/activesupport/test/callbacks_test.rb b/activesupport/test/callbacks_test.rb
index c3f683bdb5..7f71ca2262 100644
--- a/activesupport/test/callbacks_test.rb
+++ b/activesupport/test/callbacks_test.rb
@@ -84,30 +84,6 @@ class CallbacksTest < Test::Unit::TestCase
end
end
-class MetaclassCallbacksTest < Test::Unit::TestCase
- module ModuleWithCallbacks
- def self.extended(object)
- object.metaclass.before_save :raise_metaclass_callback_called
- end
-
- def module_callback_called?
- @module_callback_called ||= false
- end
-
- def raise_metaclass_callback_called
- @module_callback_called = true
- end
- end
-
- def test_metaclass_callbacks
- person = Person.new
- person.extend(ModuleWithCallbacks)
- assert !person.module_callback_called?
- person.save
- assert person.module_callback_called?
- end
-end
-
class ConditionalCallbackTest < Test::Unit::TestCase
def test_save_conditional_person
person = ConditionalPerson.new