You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
advent-of-code/2019/ruby/Rakefile

14 lines
193 B

require "rake/testtask"
task default: [:test, :srb]
Rake::TestTask.new do |t|
t.libs << "test"
t.test_files = FileList["test_*.rb"]
t.verbose = true
end
task :srb do
sh "srb tc"
end