blob: 63a666e507a1624a2f6c34e00f006ec4cb085599 (
plain)
1
2
3
4
5
6
7
8
|
# A sample Guardfile
# More info at http://github.com/guard/guard#readme
guard :rspec do
watch(%r(^spec/(.*)_spec.rb))
watch(%r(^lib/(.*)\.rb)) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { 'spec' }
end
|