diff options
author | Jeremy Kemper <jeremy@bitsweat.net> | 2009-03-29 00:08:22 -0700 |
---|---|---|
committer | Jeremy Kemper <jeremy@bitsweat.net> | 2009-03-29 00:08:22 -0700 |
commit | db214a1b5ad592279ee90dc2d765a7982a9f2f50 (patch) | |
tree | 79941a279209629de826741443913fcac240511d /activesupport/lib | |
parent | 7bcfff4457d98afca43b72c5ecb083fb6cab0a93 (diff) | |
download | rails-db214a1b5ad592279ee90dc2d765a7982a9f2f50.tar.gz rails-db214a1b5ad592279ee90dc2d765a7982a9f2f50.tar.bz2 rails-db214a1b5ad592279ee90dc2d765a7982a9f2f50.zip |
Explicit File#atomic_write dependency
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/cache/file_store.rb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/cache/file_store.rb b/activesupport/lib/active_support/cache/file_store.rb index 7f34cb52a1..61125723e2 100644 --- a/activesupport/lib/active_support/cache/file_store.rb +++ b/activesupport/lib/active_support/cache/file_store.rb @@ -1,3 +1,5 @@ +require 'active_support/core_ext/file/atomic_write' + module ActiveSupport module Cache # A cache store implementation which stores everything on the filesystem. |