Sha256: 96bd90b4dae4ca43d50e8d74325da203cd968cf81c7cf33319cbb67d0b7d4850

Contents?: true

Size: 317 Bytes

Versions: 8

Compression:

Stored size: 317 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/(.+)\.rb$})          { |m| ["spec/lib/#{m[1]}_spec.rb", "spec/controllers"] }
  watch(%r{^spec/support/(.+)\.rb$}) { "spec" }
  watch('spec/spec_helper.rb')       { "spec" }
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
frikandel-3.0.2 Guardfile
frikandel-3.0.1 Guardfile
frikandel-3.0.0 Guardfile
frikandel-2.3.0 Guardfile
frikandel-2.2.2 Guardfile
frikandel-2.2.1 Guardfile
frikandel-2.2.0 Guardfile
frikandel-2.1.0 Guardfile