blob: 6d7c1464770f4f92f0cf19a21979d3fa1d830d3c (
plain)
1
2
3
4
5
6
7
8
9
|
# A sample Guardfile
# More info at https://github.com/guard/guard#readme
guard :rspec, cmd: 'bundle exec rspec' do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { "spec" }
watch('spec/spec_helper.rb') { "spec" }
end
|