Sha256: e74aaa0e62ea32b7da35c2a360927c2843072566f182b294f25184833ae8a420

Contents?: true

Size: 641 Bytes

Versions: 17

Compression:

Stored size: 641 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", 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

17 entries across 17 versions & 1 rubygems

Version Path
ridley-0.9.1 Guardfile
ridley-0.9.0 Guardfile
ridley-0.8.6 Guardfile
ridley-0.8.5 Guardfile
ridley-0.8.3 Guardfile
ridley-0.8.2 Guardfile
ridley-0.8.1 Guardfile
ridley-0.8.0 Guardfile
ridley-0.7.0 Guardfile
ridley-0.7.0.rc4 Guardfile
ridley-0.7.0.rc3 Guardfile
ridley-0.7.0.rc1 Guardfile
ridley-0.7.0.beta Guardfile
ridley-0.6.3 Guardfile
ridley-0.6.2 Guardfile
ridley-0.6.1 Guardfile
ridley-0.6.0 Guardfile