diff options
author | Genadi Samokovarov <gsamokovarov@gmail.com> | 2013-12-02 23:36:58 +0200 |
---|---|---|
committer | Genadi Samokovarov <gsamokovarov@gmail.com> | 2013-12-03 00:28:15 +0200 |
commit | 6329d9fa8b2f86a178151be264cccdb805bfaaac (patch) | |
tree | 1c793198a080d1853b93d8145e18c3fea9be33fc /activesupport | |
parent | afbefccf2a8a2b252fe3fd9565b732f9e0867a08 (diff) | |
download | rails-6329d9fa8b2f86a178151be264cccdb805bfaaac.tar.gz rails-6329d9fa8b2f86a178151be264cccdb805bfaaac.tar.bz2 rails-6329d9fa8b2f86a178151be264cccdb805bfaaac.zip |
Remove deprecated cattr_* requires
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/cache.rb | 2 | ||||
-rw-r--r-- | activesupport/lib/active_support/logger.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/cache.rb b/activesupport/lib/active_support/cache.rb index 5c1d473161..d584d50da8 100644 --- a/activesupport/lib/active_support/cache.rb +++ b/activesupport/lib/active_support/cache.rb @@ -3,7 +3,7 @@ require 'zlib' require 'active_support/core_ext/array/extract_options' require 'active_support/core_ext/array/wrap' require 'active_support/core_ext/benchmark' -require 'active_support/core_ext/class/attribute_accessors' +require 'active_support/core_ext/module/attribute_accessors' require 'active_support/core_ext/numeric/bytes' require 'active_support/core_ext/numeric/time' require 'active_support/core_ext/object/to_param' diff --git a/activesupport/lib/active_support/logger.rb b/activesupport/lib/active_support/logger.rb index 4a55bbb350..33fccdcf95 100644 --- a/activesupport/lib/active_support/logger.rb +++ b/activesupport/lib/active_support/logger.rb @@ -1,4 +1,4 @@ -require 'active_support/core_ext/class/attribute_accessors' +require 'active_support/core_ext/module/attribute_accessors' require 'active_support/logger_silence' require 'logger' |