Sha256: 86a7ff0f016c02b2554ef14a8ac66650a6ca938beabc40b6aabb5f1a7e4086e0

Contents?: true

Size: 256 Bytes

Versions: 2

Compression:

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

2 entries across 2 versions & 1 rubygems

Version Path
sqoot-1.0.0 Guardfile
sqoot-0.0.1 Guardfile