Sha256: 587d0e6ad81b1af6e70d14d3172991ee0a2dedf9dcecc7986b55d30d851bf2a1

Contents?: true

Size: 444 Bytes

Versions: 2

Compression:

Stored size: 444 Bytes

Contents

# ./.autotest
Autotest.add_hook(:initialize) {|at|
  at.add_exception %r{^\.git}  # ignore Version Control System
  at.add_exception %r{^./tmp}  # ignore temp files, lest autotest will run again, and again...
  
  at.clear_mappings         # take out the default (test/test*rb)
  
  at.add_mapping(%r{^lib/.*\.rb$}) {|f, _|
    Dir['spec/**/*_spec.rb']
  }
  at.add_mapping(%r{^spec/.*\.rb$}) {|f, _|
    Dir['spec/**/*_spec.rb']
  }
  
  nil
}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
package_tracker-0.0.3 .autotest
package_tracker-0.0.2 .autotest