aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/callbacks.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2009-12-30 11:09:27 +0100
committerJosé Valim <jose.valim@gmail.com>2009-12-30 11:09:27 +0100
commite58ad8ed9cb0e67fde93c7edc8a0e13b8bc342ae (patch)
tree96b719af681337ba7020b5e2d58b73e25a987696 /activesupport/lib/active_support/callbacks.rb
parent97204fc0bc52af8fb6714e6f9fcd414567e0fc1a (diff)
downloadrails-e58ad8ed9cb0e67fde93c7edc8a0e13b8bc342ae.tar.gz
rails-e58ad8ed9cb0e67fde93c7edc8a0e13b8bc342ae.tar.bz2
rails-e58ad8ed9cb0e67fde93c7edc8a0e13b8bc342ae.zip
Setup and teardown now use new callbacks.
Diffstat (limited to 'activesupport/lib/active_support/callbacks.rb')
-rw-r--r--activesupport/lib/active_support/callbacks.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb
index 97e2a478b5..05bc453dbf 100644
--- a/activesupport/lib/active_support/callbacks.rb
+++ b/activesupport/lib/active_support/callbacks.rb
@@ -90,7 +90,7 @@ module ActiveSupport
class Callback
@@_callback_sequence = 0
- attr_accessor :chain, :filter, :kind, :options, :per_key, :klass
+ attr_accessor :chain, :filter, :kind, :options, :per_key, :klass, :raw_filter
def initialize(chain, filter, kind, options, klass)
@chain, @kind, @klass = chain, kind, klass