diff options
author | David Heinemeier Hansson <david@loudthinking.com> | 2006-09-03 20:29:43 +0000 |
---|---|---|
committer | David Heinemeier Hansson <david@loudthinking.com> | 2006-09-03 20:29:43 +0000 |
commit | 65ca0db3f608febec8161eac4d8d10350f3853ee (patch) | |
tree | 251d9d799c75c43e05282fb7587d3ed32715cb3f /activesupport | |
parent | d52b4a664538943b8042cd2bc468983b72fde508 (diff) | |
download | rails-65ca0db3f608febec8161eac4d8d10350f3853ee.tar.gz rails-65ca0db3f608febec8161eac4d8d10350f3853ee.tar.bz2 rails-65ca0db3f608febec8161eac4d8d10350f3853ee.zip |
Modules can deprecate stuff too
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4936 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/deprecation.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/deprecation.rb b/activesupport/lib/active_support/deprecation.rb index 696227ca94..8cfb37a9bc 100644 --- a/activesupport/lib/active_support/deprecation.rb +++ b/activesupport/lib/active_support/deprecation.rb @@ -114,7 +114,7 @@ module ActiveSupport end end -class Class +class Module include ActiveSupport::Deprecation::ClassMethods end |