Sha256: ad8cb99544128c2ef21b56875b2b8f5d63a1847d60c9806322343bc5ba9a5c9b

Contents?: true

Size: 300 Bytes

Versions: 5

Compression:

Stored size: 300 Bytes

Contents

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

guard 'rspec', :version => 2 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 'rocco' do
  watch(%r{^lib/.*\.rb$})
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fozzie-0.0.20 Guardfile
fozzie-0.0.19 Guardfile
fozzie-0.0.18 Guardfile
fozzie-0.0.17 Guardfile
fozzie-0.0.16 Guardfile