public
Description: An event aggregator based in Portland, OR
Homepage: http://calagator.org
Clone URL: git://github.com/calagator/calagator.git
calagator / .autotest
100644 15 lines (13 sloc) 0.463 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'autotest/redgreen'
 
Autotest.add_hook :run do |autotest|
    autotest.add_exception(/\.git/)
    autotest.add_exception(/\.hg/)
    autotest.add_exception(/\.svn/)
    autotest.add_exception(/^\.\/config/)
    autotest.add_exception(/^\.\/coverage/)
    autotest.add_exception(/^\.\/db/)
    autotest.add_exception(/^\.\/log/)
    autotest.add_exception(/^\.\/public/)
    autotest.add_exception(/^\.\/tmp/)
    autotest.add_exception(/^\.\/vendor/)
end