From 0c0f278ab20f3042cdb69604166e18a61f8605ad Mon Sep 17 00:00:00 2001 From: Sokolov Yura Date: Tue, 14 Feb 2012 15:05:45 +0400 Subject: sync __run_callbacks with ruby-trunk https://bugs.ruby-lang.org/projects/ruby-trunk/repository/revisions/34580 In this revision behavior of respond_to? had changed: now to ask about protected method one should pass second argument `true` --- activesupport/lib/active_support/callbacks.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activesupport/lib/active_support/callbacks.rb') diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb index f5fd86bf74..a3c956f380 100644 --- a/activesupport/lib/active_support/callbacks.rb +++ b/activesupport/lib/active_support/callbacks.rb @@ -395,7 +395,7 @@ module ActiveSupport # def __run_callback(key, kind, object, &blk) #:nodoc: name = __callback_runner_name(key, kind) - unless object.respond_to?(name) + unless object.respond_to?(name, true) str = object.send("_#{kind}_callbacks").compile(key, object) class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1 def #{name}() #{str} end -- cgit v1.2.3