Skip to content

Commit f023fc2

Browse files
committed
Gurdfile created by "guard init rspec"
1 parent b789584 commit f023fc2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Guardfile

+9
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)