diff options
author | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2012-11-29 13:31:00 -0500 |
---|---|---|
committer | Francesco Rodriguez <lrodriguezsanc@gmail.com> | 2012-11-29 13:31:00 -0500 |
commit | d168d234e3ce439911a178d1d13f6c2cbf8ff549 (patch) | |
tree | 560db3b85b0c4c60c1fc563bf24e800d473f38c0 /activesupport | |
parent | abdfffa2139355d7ccb6d8fd91a6bb21f2f1b8d8 (diff) | |
download | rails-d168d234e3ce439911a178d1d13f6c2cbf8ff549.tar.gz rails-d168d234e3ce439911a178d1d13f6c2cbf8ff549.tar.bz2 rails-d168d234e3ce439911a178d1d13f6c2cbf8ff549.zip |
nodoc AS::Deprecation::InstanceDelegator class [ci skip]
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/deprecation/instance_delegator.rb | 6 |
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 |