From ecf82d127bb814ff4b9b35fbf177839932d7df65 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 13 Apr 2005 05:32:21 +0000 Subject: [PATCH] Added Rake target clear_logs that'll truncate all the *.log files in log/ to zero #1079 [Lucas Carlson] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1157 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- railties/CHANGELOG | 2 ++ railties/fresh_rakefile | 8 ++++++++ 2 files changed, 10 insertions(+) diff --git a/railties/CHANGELOG b/railties/CHANGELOG index 4cb507759f..7a0d0ad1cc 100644 --- a/railties/CHANGELOG +++ b/railties/CHANGELOG @@ -1,5 +1,7 @@ *SVN* +* Added Rake target clear_logs that'll truncate all the *.log files in log/ to zero #1079 [Lucas Carlson] + * Added lazy typing for generate, such that ./script/generate cn == ./script/generate controller and the likes #1051 [k@v2studio.com] * Fixed that ownership is brought over in pg_dump during tests for PostgreSQL #1060 [pburleson@gmail.com] diff --git a/railties/fresh_rakefile b/railties/fresh_rakefile index b6991bf076..b563af722b 100755 --- a/railties/fresh_rakefile +++ b/railties/fresh_rakefile @@ -178,3 +178,11 @@ task :purge_test_database => :environment do raise "Unknown database adapter '#{abcs["test"]["adapter"]}'" end end + +desc "Clears all *.log files in log/" +task :clear_logs => :environment do + FileList["log/*.log"].each do |log_file| + f = File.open(log_file, "w") + f.close + end +end \ No newline at end of file