Sha256: b58480660cbc01d72950d09f6b62f7fc7801bc72782b40eab33e40e18f3d35df

Contents?: true

Size: 491 Bytes

Versions: 6

Compression:

Stored size: 491 Bytes

Contents

guard :bundler do
  watch('Gemfile')
  watch('Gemfile.lock')
  watch(%r{^.+\.gemspec})
end

guard :cane do
  watch(%r{^lib/(.+)\.rb$})
end

guard :rspec, cli: '--color --drb --format Fuubar' do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/(.+)\.rb$})     { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch('spec/spec_helper.rb')  { 'spec' }
end

guard :spork do
  watch('Gemfile')
  watch('Gemfile.lock')
  watch('spec/spec_helper.rb')  { :rspec }
end

guard :yard do
  watch(%r{lib/.+\.rb})
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
buff-ignore-1.1.0 Guardfile
buff-ignore-1.0.4 Guardfile
buff-ignore-1.0.3 Guardfile
buff-ignore-1.0.2 Guardfile
buff-ignore-1.0.1 Guardfile
buff-ignore-1.0.0 Guardfile