hashie/Guardfile

6 lines
197 B
Plaintext
Raw Normal View History

2014-08-23 23:52:21 +00:00
guard 'rspec', all_on_start: false, cmd: 'bundle exec rspec' do
watch(/^spec\/.+_spec\.rb/)
2015-10-25 19:22:45 +00:00
watch(/^lib\/(.+)\.rb/) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { 'spec' }
end