mirror of
https://github.com/samsonjs/csc360-a1-shell.git
synced 2026-03-25 08:45:52 +00:00
5 lines
135 B
Ruby
5 lines
135 B
Ruby
guard :rake, task: "test" do
|
|
watch(%r{^test/.*_test\.rb$})
|
|
watch(%r{^shell/.*\.rb$}) { "test" }
|
|
watch("shell.rb") { "test" }
|
|
end
|