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

38 lines
964 B
Ruby
Raw Normal View History

namespace :tmp do
desc "Clear cache and socket files from tmp/ (narrow w/ tmp:cache:clear, tmp:sockets:clear)"
task clear: ["tmp:cache:clear", "tmp:sockets:clear"]
tmp_dirs = [ 'tmp/cache',
'tmp/sockets',
'tmp/pids',
'tmp/cache/assets/development',
'tmp/cache/assets/test',
'tmp/cache/assets/production' ]
2012-08-13 17:15:20 -04:00
tmp_dirs.each { |d| directory d }
2015-01-25 07:25:35 -05:00
desc "Creates tmp directories for cache, sockets, and pids"
2012-10-14 06:03:39 -04:00
task create: tmp_dirs
namespace :cache do
2010-06-09 16:19:03 -04:00
# desc "Clears all files and directories in tmp/cache"
task :clear do
FileUtils.rm_rf(Dir['tmp/cache/[^.]*'])
end
end
namespace :sockets do
2010-06-09 16:19:03 -04:00
# desc "Clears all files in tmp/sockets"
task :clear do
FileUtils.rm(Dir['tmp/sockets/[^.]*'])
end
end
namespace :pids do
2010-06-09 16:19:03 -04:00
# desc "Clears all files in tmp/pids"
task :clear do
FileUtils.rm(Dir['tmp/pids/[^.]*'])
end
end
end