blob: 63a666e507a1624a2f6c34e00f006ec4cb085599 [file] [log] [blame]
# 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