rails--rails/railties/lib/rails/tasks/tmp.rake

46 lines
1.2 KiB
Ruby
Raw Normal View History

namespace :tmp do
2010-06-09 20:19:03 +00:00
desc "Clear session, cache, and socket files from tmp/ (narrow w/ tmp:sessions:clear, tmp:cache:clear, tmp:sockets:clear)"
2012-10-14 10:03:39 +00:00
task clear: [ "tmp:sessions:clear", "tmp:cache:clear", "tmp:sockets:clear"]
tmp_dirs = [ 'tmp/sessions',
'tmp/cache',
'tmp/sockets',
'tmp/pids',
'tmp/cache/assets/development',
'tmp/cache/assets/test',
'tmp/cache/assets/production' ]
2012-08-13 21:15:20 +00:00
tmp_dirs.each { |d| directory d }
desc "Creates tmp directories for sessions, cache, sockets, and pids"
2012-10-14 10:03:39 +00:00
task create: tmp_dirs
namespace :sessions do
2010-06-09 20:19:03 +00:00
# desc "Clears all files in tmp/sessions"
task :clear do
FileUtils.rm(Dir['tmp/sessions/[^.]*'])
end
end
namespace :cache do
2010-06-09 20:19:03 +00: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 20:19:03 +00:00
# desc "Clears all files in tmp/sockets"
task :clear do
FileUtils.rm(Dir['tmp/sockets/[^.]*'])
end
end
namespace :pids do
2010-06-09 20:19:03 +00:00
# desc "Clears all files in tmp/pids"
task :clear do
FileUtils.rm(Dir['tmp/pids/[^.]*'])
end
end
end