Files
David Parker 6796ea6374 Initial commit
2021-09-09 13:36:10 -06:00

17 lines
348 B
Ruby

rspec_options = {
version: 1,
all_after_pass: false,
all_on_start: false
}
guard 'rspec', rspec_options do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
end
guard 'bundler' do
watch('Gemfile')
watch(/^.+\.gemspec/)
end