files = `ls *.rb`.split("\n");
files.each{|f|
  puts "checking #{f}"
  `ruby -c #{f}`
}
