producer-core/Guardfile
2014-02-14 00:53:41 +00:00

13 lines
478 B
Ruby

guard :cucumber, cli: '--format pretty --quiet' do
watch(%r{\Afeatures/.+\.feature\z})
watch(%r{\Afeatures/support/.+\.rb\z}) { 'features' }
watch(%r{\Afeatures/step_definitions/.+_steps\.rb\z}) { 'features' }
end
guard :rspec, cmd: 'rspec -f doc' do
watch(%r{\Aspec/.+_spec\.rb\z})
watch(%r{\Alib/(.+)\.rb\z}) { |m| "spec/#{m[1]}_spec.rb" }
watch('spec/spec_helper.rb') { 'spec' }
watch(%r{\Aspec/support/.+\.rb\z}) { 'spec' }
end