From 3ac9956bfc8603cdd9999edeec15219dff02d8a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Mendon=C3=A7a=20Fran=C3=A7a?= Date: Tue, 24 May 2016 19:18:48 -0300 Subject: Don't delegate to private methods of the targer And make sure that it doesn't even try to call the method in the target. --- activesupport/lib/active_support/core_ext/module/delegation.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'activesupport/lib') diff --git a/activesupport/lib/active_support/core_ext/module/delegation.rb b/activesupport/lib/active_support/core_ext/module/delegation.rb index fe680c87b8..7f968d10b5 100644 --- a/activesupport/lib/active_support/core_ext/module/delegation.rb +++ b/activesupport/lib/active_support/core_ext/module/delegation.rb @@ -267,7 +267,11 @@ class Module end def method_missing(method, *args, &block) - #{target}.send(method, *args, &block) + if #{target}.respond_to?(method) + #{target}.public_send(method, *args, &block) + else + super + end end RUBY end -- cgit v1.2.3