aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-11-29 13:31:00 -0500
committerFrancesco Rodriguez <lrodriguezsanc@gmail.com>2012-11-29 13:31:00 -0500
commitd168d234e3ce439911a178d1d13f6c2cbf8ff549 (patch)
tree560db3b85b0c4c60c1fc563bf24e800d473f38c0 /activesupport/lib
parentabdfffa2139355d7ccb6d8fd91a6bb21f2f1b8d8 (diff)
downloadrails-d168d234e3ce439911a178d1d13f6c2cbf8ff549.tar.gz
rails-d168d234e3ce439911a178d1d13f6c2cbf8ff549.tar.bz2
rails-d168d234e3ce439911a178d1d13f6c2cbf8ff549.zip
nodoc AS::Deprecation::InstanceDelegator class [ci skip]
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/deprecation/instance_delegator.rb6
1 files 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 ff240cb887..8472a58add 100644
--- a/activesupport/lib/active_support/deprecation/instance_delegator.rb
+++ b/activesupport/lib/active_support/deprecation/instance_delegator.rb
@@ -3,13 +3,13 @@ require 'active_support/core_ext/module/delegation'
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 @@ module ActiveSupport
end
end
end
-end \ No newline at end of file
+end