1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Use cache/assets instead.

This commit is contained in:
José Valim 2011-07-12 22:55:34 -03:00
parent 8f0e0b63f5
commit 704ee0df65
4 changed files with 4 additions and 5 deletions

View file

@ -38,7 +38,7 @@ module Rails
@assets.precompile = [ /\w+\.(?!js|css).+/, /application.(css|js)$/ ]
@assets.prefix = "/assets"
@assets.cache_store = [ :file_store, "#{root}/tmp/assets_cache/" ]
@assets.cache_store = [ :file_store, "#{root}/tmp/cache/assets/" ]
@assets.js_compressor = nil
@assets.css_compressor = nil
end

View file

@ -118,7 +118,7 @@ module Rails
def tmp
empty_directory "tmp/cache"
empty_directory "tmp/assets_cache"
empty_directory "tmp/cache/assets"
end
def vendor

View file

@ -4,7 +4,7 @@ namespace :tmp do
desc "Creates tmp directories for sessions, cache, sockets, and pids"
task :create do
FileUtils.mkdir_p(%w( tmp/sessions tmp/cache tmp/sockets tmp/pids tmp/assets_cache ))
FileUtils.mkdir_p(%w( tmp/sessions tmp/cache tmp/sockets tmp/pids tmp/cache/assets ))
end
namespace :sessions do
@ -18,7 +18,6 @@ namespace :tmp do
# desc "Clears all files and directories in tmp/cache"
task :clear do
FileUtils.rm_rf(Dir['tmp/cache/[^.]*'])
FileUtils.rm_rf(Dir['tmp/assets_cache/[^.]*'])
end
end

View file

@ -34,8 +34,8 @@ DEFAULT_APP_FILES = %w(
vendor
vendor/assets
vendor/plugins
tmp/assets_cache
tmp/cache
tmp/cache/assets
)
class AppGeneratorTest < Rails::Generators::TestCase