mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-19 16:50:12 +01:00
10 lines
204 B
Ruby
10 lines
204 B
Ruby
|
|
namespace :log do
|
||
|
|
desc "Truncates all *.log files in log/ to zero bytes"
|
||
|
|
task :clear do
|
||
|
|
FileList["log/*.log"].each do |log_file|
|
||
|
|
f = File.open(log_file, "w")
|
||
|
|
f.close
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|