Sha256: c3b38268582e2f72e2f290d4c3e67da0091f2a1bd3050ddc59662e33ae6f78b1

Contents?: true

Size: 795 Bytes

Versions: 1

Compression:

Stored size: 795 Bytes

Contents

guard 'spork' do
  watch('Gemfile')
  watch('spec/spec_helper.rb')     { :rspec }
  watch(%r{^spec/support/.+\.rb$}) { :rspec }
end

guard 'yard', stdout: '/dev/null', stderr: '/dev/null' do
  watch(%r{app/.+\.rb})
  watch(%r{lib/.+\.rb})
  watch(%r{ext/.+\.c})
end

guard 'rspec', version: 2, cli: "--color --drb --format Fuubar", all_on_start: false, all_after_pass: false, notification: false do
  watch(%r{^spec/unit/.+_spec\.rb$})
  watch(%r{^spec/acceptance/.+_spec\.rb$})
  
  watch(%r{^lib/(.+)\.rb$})                     { |m| "spec/unit/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')                  { "spec" }
  watch(%r{^spec/support/.+\.rb$})              { "spec" }
  watch(%r{^spec/shared_examples/(.*)\.rb$})    { |m| ["spec/unit/#{m[1]}_spec.rb", "spec/unit/#{m[1]}"] }
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
chozo-0.0.1 Guardfile