Sha256: 74660e210f8933bdebd64ff95b5acf2c7e81ddd7e9d26cfab00ee62714a923fc

Contents?: true

Size: 261 Bytes

Versions: 5

Compression:

Stored size: 261 Bytes

Contents

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

guard 'minitest' do
   watch(%r|^spec/(.*)_spec\.rb|)
   watch(%r|^lib/(.*)([^/]+)\.rb|)     { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
   watch(%r|^spec/spec_helper\.rb|)    { "spec" }

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
warcards-0.0.7 Guardfile
warcards-0.0.6 Guardfile
warcards-0.0.5 Guardfile
warcards-0.0.3 Guardfile
warcards-0.0.2 Guardfile