Sha256: db512813122dbdbd388c8807ebf55c6a68373adc8eacc54a5cec241d86a90e1b

Contents?: true

Size: 479 Bytes

Versions: 8

Compression:

Stored size: 479 Bytes

Contents

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

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
foreground-0.1.0 Guardfile
foreground-0.0.4 Guardfile
foreground-0.0.3 Guardfile
foreground-0.0.2 Guardfile
foreground-0.0.1 Guardfile
prlbackup-1.3.0 Guardfile
prlbackup-1.2.0 Guardfile
prlbackup-1.1.3 Guardfile