diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2012-09-28 15:20:17 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2012-09-28 15:20:17 -0500 |
commit | a4c358f84c183743edec0c5d6ef113d8e1a5500f (patch) | |
tree | b5ecc198897f4ef970f7e41d6ad64d382fa33b61 /railties/lib/rails/tasks | |
parent | 9eb72ac78f15078c362cb4bc6cc42ddda182127b (diff) | |
download | rails-a4c358f84c183743edec0c5d6ef113d8e1a5500f.tar.gz rails-a4c358f84c183743edec0c5d6ef113d8e1a5500f.tar.bz2 rails-a4c358f84c183743edec0c5d6ef113d8e1a5500f.zip |
Assets cache shouldn't be shared between different environments
Diffstat (limited to 'railties/lib/rails/tasks')
-rw-r--r-- | railties/lib/rails/tasks/tmp.rake | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/railties/lib/rails/tasks/tmp.rake b/railties/lib/rails/tasks/tmp.rake index 0968765b4f..0bb64ced95 100644 --- a/railties/lib/rails/tasks/tmp.rake +++ b/railties/lib/rails/tasks/tmp.rake @@ -6,7 +6,9 @@ namespace :tmp do 'tmp/cache', 'tmp/sockets', 'tmp/pids', - 'tmp/cache/assets' ] + 'tmp/cache/assets/development', + 'tmp/cache/assets/test', + 'tmp/cache/assets/production' ] tmp_dirs.each { |d| directory d } |