aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/tasks/clear.rake
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/tasks/clear.rake')
-rw-r--r--railties/lib/tasks/clear.rake29
1 files changed, 29 insertions, 0 deletions
diff --git a/railties/lib/tasks/clear.rake b/railties/lib/tasks/clear.rake
new file mode 100644
index 0000000000..25769f3088
--- /dev/null
+++ b/railties/lib/tasks/clear.rake
@@ -0,0 +1,29 @@
+namespace :clear do
+ desc "Truncates all *.log files in log/ to zero bytes"
+ task :logs do
+ FileList["log/*.log"].each do |log_file|
+ f = File.open(log_file, "w")
+ f.close
+ end
+ end
+
+ desc "Clear session, cache, and socket files from tmp/"
+ task :tmp => [ "clear:tmp:sesions", "clear:tmp:cache", "clear:tmp:sockets"]
+
+ namespace :tmp do
+ desc "Clears all files in tmp/sessions"
+ task :sessions do
+ FileUtils.rm(Dir['tmp/sessions/[^.]*'])
+ end
+
+ desc "Clears all files and directories in tmp/cache"
+ task :cache do
+ FileUtils.rm_rf(Dir['tmp/cache/[^.]*'])
+ end
+
+ desc "Clears all ruby_sess.* files in tmp/sessions"
+ task :sockets do
+ FileUtils.rm(Dir['tmp/sockets/[^.]*'])
+ end
+ end
+end \ No newline at end of file