Sha256: b4b9bd50babe8c56c5fb9580b22cc343ef90f8bd739160bc43e6e9ee63cd346b

Contents?: true

Size: 655 Bytes

Versions: 2

Compression:

Stored size: 655 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" }
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ridley-0.0.2 Guardfile
ridley-0.0.1 Guardfile