Skip to content

Commit a0ddf0d

Browse files
committed
Add a Guardfile
1 parent 4cb4ddb commit a0ddf0d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Guardfile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# A sample Guardfile
2+
# More info at https://github.com/guard/guard#readme
3+
4+
guard 'rspec' do
5+
watch(%r{^spec/.+_spec\.rb$})
6+
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/lib/#{m[1]}_spec.rb" }
7+
watch('spec/spec_helper.rb') { "spec" }
8+
end

0 commit comments

Comments
 (0)