Sha256: d30fa9c80c9008826fde677603aace52f1adcb8888a591e694c3167337234f72
Contents?: true
Size: 528 Bytes
Versions: 4
Compression:
Stored size: 528 Bytes
Contents
# vim: ft=ruby require 'autotest/growl' Autotest.add_hook :initialize do |at| at.libs = "lib:spec" at.testlib = 'minitest/autorun' at.add_exception 'coverage.info' at.add_exception 'coverage' at.add_exception '.git' at.clear_mappings at.add_mapping(%r|^spec/.*_spec\.rb$|) do |filename, _| filename end at.add_mapping(%r|^lib/(.*)\.rb$|) do |_, match| [ "test/#{match[1]}_spec.rb" ] end at.add_mapping(%r|^spec/spec_helper\.rb|) do at.files_matching( %r|^spec/.*_spec\.rb| ) end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
launchy-2.0.1 | .autotest |
launchy-2.0.1-java | .autotest |
launchy-2.0.0-java | .autotest |
launchy-2.0.0 | .autotest |