aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/tasks/misc.rake
blob: 713f62254789fadbf8475e898d63bea683b214f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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