summaryrefslogtreecommitdiffhomepage
path: root/Rakefile
blob: b41beab53ffc04c2d157bcd68363798e5481e216 (plain)
1
2
3
4
5
6
7
task default: %w[test]

task :test do
  Dir["./tests/*.rb"].each do |test_file|
    ruby test_file
  end
end