aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/cache.rb
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2013-12-02 14:30:39 -0800
committerGuillermo Iguaran <guilleiguaran@gmail.com>2013-12-02 14:30:39 -0800
commitb40faf423cb032cf326e07e7c7bd578c9052b282 (patch)
tree7d64d3c5c711cda60f4949f491d4cf4d0046c8f4 /activesupport/lib/active_support/cache.rb
parentb0a3d113a306d6bdec1ed13261ef051d367c7160 (diff)
parent6329d9fa8b2f86a178151be264cccdb805bfaaac (diff)
downloadrails-b40faf423cb032cf326e07e7c7bd578c9052b282.tar.gz
rails-b40faf423cb032cf326e07e7c7bd578c9052b282.tar.bz2
rails-b40faf423cb032cf326e07e7c7bd578c9052b282.zip
Merge pull request #13138 from gsamokovarov/remove-cattr-requires
Remove deprecated cattr_* requires
Diffstat (limited to 'activesupport/lib/active_support/cache.rb')
-rw-r--r--activesupport/lib/active_support/cache.rb2
1 files changed, 1 insertions, 1 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'