We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4cb4ddb commit a0ddf0dCopy full SHA for a0ddf0d
Guardfile
@@ -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