Sha256: 2b3cd9467d14d3432bfac83e2971437c40e5a374eaf9244af1e1e6a4a7a112c2

Contents?: true

Size: 269 Bytes

Versions: 2

Compression:

Stored size: 269 Bytes

Contents

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

guard :rspec do
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^lib/pivot_table.rb$}) { "spec" }
  watch(%r{^lib/pivot_table/(.+)\.rb$}) { "spec" }
  watch('spec/spec_helper.rb')    { "spec" }
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
pivot_table-0.2.0 Guardfile
pivot_table-0.1.4 Guardfile