Sha256: 1abd671a11bf7f029ba365403ba326cc426b5823388d5597e05fcd2c1daf0ff2

Contents?: true

Size: 252 Bytes

Versions: 9

Compression:

Stored size: 252 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

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
fozzie-0.0.27 Guardfile
dca-0.1.1 Guardfile
fozzie-0.0.26 Guardfile
dca-0.1.0 Guardfile
fozzie-0.0.25 Guardfile
fozzie-0.0.24 Guardfile
fozzie-0.0.23 Guardfile
fozzie-0.0.22 Guardfile
fozzie-0.0.21 Guardfile