Sha256: 7dc3b836c80568fdc6f73a3bd46c9ad67e60e564a6d89ab47c506841a0367ff1

Contents?: true

Size: 385 Bytes

Versions: 1

Compression:

Stored size: 385 Bytes

Contents

# A sample Guardfile
# More info at https://github.com/guard/guard#readme
guard :rspec do
  watch(%r{^lib/(.+)\.rb$})            { |m| "spec/lib/#{m[1]}_spec.rb" }
  watch(%r{^lib/index_html/(.+)\.rb$}) { |m| "spec/lib/index_html/#{m[1]}_spec.rb" }
  watch(%r{^spec/.+_spec\.rb$})
  watch(%r{^spec/support/(.+)\.rb$})   { 'spec' }
  watch('spec/spec_helper.rb')         { 'spec' }
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
index_html-0.1.1 Guardfile