Sha256: 97b128823c743105a360e91932407681515a3e6fcdfb845cb172928cb16d0267

Contents?: true

Size: 344 Bytes

Versions: 4

Compression:

Stored size: 344 Bytes

Contents

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

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
imap_guard-1.0.0 Guardfile
imap_guard-0.0.4 Guardfile
imap_guard-0.0.3 Guardfile
imap_guard-0.0.2 Guardfile