Sha256: db512813122dbdbd388c8807ebf55c6a68373adc8eacc54a5cec241d86a90e1b
Contents?: true
Size: 479 Bytes
Versions: 8
Compression:
Stored size: 479 Bytes
Contents
guard 'rspec', :version => 2, :cli => '--color' do watch(%r{^spec/.+_spec\.rb$}) watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" } watch('spec/spec_helper.rb') { "spec" } end guard 'cucumber' do watch(%r{^bin/.+$}) { 'features' } watch(%r{^lib/.+$}) { 'features' } watch(%r{^features/.+\.feature$}) watch(%r{^features/support/.+$}) { 'features' } watch(%r{^features/steps/.+$}) { 'features' } end
Version data entries
8 entries across 8 versions & 2 rubygems