summaryrefslogtreecommitdiff
path: root/Guardfile
blob: be9bde012e9ea241c52ec21b668a85232e409e46 (plain)
1
2
3
4
5
guard 'rspec', all_on_start: false, cmd: 'bundle exec rspec' do
  watch(/^spec\/.+_spec\.rb/)
  watch(/^lib\/(.+)\.rb/) { |m| "spec/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb') { 'spec' }
end