We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b789584 commit f023fc2Copy full SHA for f023fc2
Guardfile
@@ -0,0 +1,9 @@
1
+# A sample Guardfile
2
+# More info at https://github.com/guard/guard#readme
3
+
4
+guard :rspec, cli: '--color' do
5
+ watch(%r{^spec/.+_spec\.rb$})
6
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
7
+ watch('spec/helper.rb') { "spec" }
8
+end
9
0 commit comments