8 lines
234 B
Ruby
8 lines
234 B
Ruby
guard :rspec, cmd: 'bundle exec rspec --color --format documentation' do
|
|
watch(%r{^spec/.+_spec\.rb$})
|
|
watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
|
|
watch('spec/spec_helper.rb') { 'spec' }
|
|
end
|
|
|
|
notification :off
|