mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
7a8ed3bbbf
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4294 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
37 lines
No EOL
916 B
Ruby
37 lines
No EOL
916 B
Ruby
namespace :tmp do
|
|
desc "Clear session, cache, and socket files from tmp/"
|
|
task :clear => [ "tmp:sessions:clear", "tmp:cache:clear", "tmp:sockets:clear"]
|
|
|
|
desc "Creates tmp directories for sessions, cache, and sockets"
|
|
task :create do
|
|
FileUtils.mkdir_p(%w( tmp/sessions tmp/cache tmp/sockets tmp/pids ))
|
|
end
|
|
|
|
namespace :sessions do
|
|
desc "Clears all files in tmp/sessions"
|
|
task :clear do
|
|
FileUtils.rm(Dir['tmp/sessions/[^.]*'])
|
|
end
|
|
end
|
|
|
|
namespace :cache do
|
|
desc "Clears all files and directories in tmp/cache"
|
|
task :clear do
|
|
FileUtils.rm_rf(Dir['tmp/cache/[^.]*'])
|
|
end
|
|
end
|
|
|
|
namespace :sockets do
|
|
desc "Clears all files in tmp/sockets"
|
|
task :clear do
|
|
FileUtils.rm(Dir['tmp/sockets/[^.]*'])
|
|
end
|
|
end
|
|
|
|
namespace :pids do
|
|
desc "Clears all files in tmp/pids"
|
|
task :clear do
|
|
FileUtils.rm(Dir['tmp/pids/[^.]*'])
|
|
end
|
|
end
|
|
end |