Changeset 4
Legend:
- Unmodified
- Added
- Removed
-
test/Rakefile
r3 r4 1 task :default do 2 sh 'gosh test.scm' 3 sh 'runghc test.hs' 1 task :default => :run_all 2 3 desc '' 4 task :run_all do 5 { 6 'hs' => 'runghc', 7 'scm' => 'gosh', 8 'rb' => 'ruby', 9 'pl' => 'perl' 10 }.each do |ext, command| 11 FileList["*.#{ext}"].each do |f| 12 sh "/usr/bin/env #{command} #{f}" 13 puts 14 end 15 end 4 16 end