learnxinyminutes-docs/Rakefile

8 lines
109 B
Ruby
Raw Normal View History

task default: %w[test]
task :test do
2016-11-10 07:24:10 +03:00
Dir["./tests/*.rb"].each do |test_file|
ruby test_file
end
end