Started again with Rails 4
[feedcatcher.git] / vendor / rails / railties / lib / tasks / log.rake
diff --git a/vendor/rails/railties/lib/tasks/log.rake b/vendor/rails/railties/lib/tasks/log.rake
deleted file mode 100644 (file)
index 6e13346..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-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