rails/railties/lib/tasks/misc.rake

16 lines
343 B
Ruby

desc "Run all the tests on a fresh test database"
task :default => [ :test_units, :test_functional ]
task :environment do
require(File.join(RAILS_ROOT, 'config', 'environment'))
end
desc "Clears all *.log files in log/"
task :clear_logs do
FileList["log/*.log"].each do |log_file|
f = File.open(log_file, "w")
f.close
end
end