aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/tasks/clear.rake
blob: 25769f3088378007de99fb23fec1563c24a4bae2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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