Sha256: ccdaf7269db37acf75d6f17e1fbb17dd26bdb518dc17379b430dc00066d76224

Contents?: true

Size: 330 Bytes

Versions: 3

Compression:

Stored size: 330 Bytes

Contents

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

guard :test do
  watch(%r{^lib/mt940/banks/(.+)\.rb$}) {|m| "test/mt940_#{m[1]}_test.rb" }
  watch(%r{^test/.+_test\.rb$}) 
  watch('test/test_helper.rb')  { "test" }
  watch('lib/mt940/base.rb')  { "test" }
  watch('lib/mt940/parser.rb')  { "test" }
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mt940-0.8.0 Guardfile
mt940-0.7.1 Guardfile
mt940-0.7.0 Guardfile