Sha256: 400f63e9e30a70d69310e620b2fd5c838bb7c1b35debc6e09ecced02659f785c

Contents?: true

Size: 664 Bytes

Versions: 7

Compression:

Stored size: 664 Bytes

Contents

notification :off

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', cli: "--color --drb --format Fuubar --tag ~type:acceptance", all_on_start: false, all_after_pass: 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" }
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
ridley-0.10.2 Guardfile
ridley-0.10.1 Guardfile
ridley-0.11.0.rc1 Guardfile
ridley-0.10.0 Guardfile
ridley-0.10.0.rc3 Guardfile
ridley-0.10.0.rc2 Guardfile
ridley-0.10.0.rc1 Guardfile