Sha256: 38d3416198d09db5834c01ad11b9cf1e51dcbea05e3fdd0b0d2acfe1512cf42e

Contents?: true

Size: 389 Bytes

Versions: 4

Compression:

Stored size: 389 Bytes

Contents

Autotest.add_hook(:initialize) {|at|
  %w{.git .svn .hg .DS_Store .rvmrc ._* vendor test tmp log doc var}.each do |exception|
    at.add_exception(exception)
  end
  at.clear_mappings            # take out the default (test/test*rb)
  at.add_mapping(%r{^(lib)|(util)/.*\.rb$}) {|f, _|
    Dir['spec/**/*.rb']
  }
  at.add_mapping(%r{^spec/.*\.rb$}) {|filename, _|
    filename
  }
  nil
}

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
xspf2m3u-0.0.5 .autotest
xspf2m3u-0.0.4 .autotest
xspf2m3u-0.0.3 .autotest
xspf2m3u-0.0.2 .autotest