From d168d234e3ce439911a178d1d13f6c2cbf8ff549 Mon Sep 17 00:00:00 2001 From: Francesco Rodriguez Date: Thu, 29 Nov 2012 13:31:00 -0500 Subject: [PATCH] nodoc AS::Deprecation::InstanceDelegator class [ci skip] --- .../lib/active_support/deprecation/instance_delegator.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/activesupport/lib/active_support/deprecation/instance_delegator.rb b/activesupport/lib/active_support/deprecation/instance_delegator.rb index ff240cb887357..8472a58addb43 100644 --- a/activesupport/lib/active_support/deprecation/instance_delegator.rb +++ b/activesupport/lib/active_support/deprecation/instance_delegator.rb @@ -3,13 +3,13 @@ module ActiveSupport class Deprecation - module InstanceDelegator + module InstanceDelegator # :nodoc: def self.included(base) base.extend(ClassMethods) base.public_class_method :new end - module ClassMethods + module ClassMethods # :nodoc: def include(included_module) included_module.instance_methods.each { |m| method_added(m) } super @@ -21,4 +21,4 @@ def method_added(method_name) end end end -end \ No newline at end of file +end