Sha256: 6ff740d1bd61056da51eb3f62db87c3f07248c9c93026e2609295d70b268d2e1

Contents?: true

Size: 691 Bytes

Versions: 6

Compression:

Stored size: 691 Bytes

Contents

# A sample Guardfile
# More info at https://github.com/guard/guard#readme

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

guard 'cucumber' do
  watch(%r{^bin/.+$})                 { 'features' }
  watch(%r{^lib/.+$})                 { 'features' }
  watch(%r{^features/.+\.feature$})
  watch(%r{^features/support/.+$})    { 'features' }
  watch(%r{^features/steps/.+$})       { 'features' }
end

guard 'ronn', :cli => '--manual="PRLBACKUP MANUAL" --style=toc' do
  watch(%r{^man/.+\.ronn$})
  watch(%r{^man/.+\.(md|markdown)$})
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
prlbackup-1.1.2 Guardfile
prlbackup-1.1.1 Guardfile
prlbackup-1.1.0 Guardfile
prlbackup-1.0.3 Guardfile
prlbackup-1.0.2 Guardfile
prlbackup-1.0.0 Guardfile