manifique/Guardfile
2018-06-28 17:23:09 -07:00

6 lines
192 B
Ruby

guard :rspec, cmd: 'rspec' do
watch(%r{^spec/.+_spec\.rb$})
watch(%r{^lib/manifique/(.+)\.rb$}) { |m| "spec/manifique/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { "spec" }
end