mirror of
https://github.com/samsonjs/csc360-a1-shell.git
synced 2026-03-25 08:45:52 +00:00
Add a rake clean task
This commit is contained in:
parent
f16bd5f814
commit
c01e3a5fe6
1 changed files with 4 additions and 0 deletions
|
|
@ -5,3 +5,7 @@ task default: 'test'
|
||||||
Rake::TestTask.new do |task|
|
Rake::TestTask.new do |task|
|
||||||
task.pattern = 'test/*_test.rb'
|
task.pattern = 'test/*_test.rb'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
task :clean do
|
||||||
|
FileUtils.rm_rf('test_bin')
|
||||||
|
end
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue