mirror of
https://github.com/dkam/hsmr.git
synced 2025-12-28 08:44:53 +00:00
9 lines
228 B
Ruby
9 lines
228 B
Ruby
# A sample Guardfile
|
|
# More info at https://github.com/guard/guard#readme
|
|
|
|
guard :test do
|
|
watch(%r{lib/(.+)\.rb}) { |m| "test/#{m[1]}_test.rb" }
|
|
watch(%r{test/.+_test\.rb})
|
|
watch('test/test_helper.rb') { "test" }
|
|
end
|