public
Description: CAS Server
Homepage:
Clone URL: git://github.com/relevance/castronaut.git
castronaut / .autotest
100644 11 lines (6 sloc) 0.289 kb
1
2
3
4
5
6
7
8
9
10
11
Autotest.add_hook :initialize do |autotest|
  
 # Check every 5 seconds
 # autotest.sleep = 3
  
 # Ignore files with suffix
 
 %w{.svn .log .hg .git .erb .rhtml .png .txt .sh .project .rjs .rake .jpg .css .xml vendor db}.each { |exception| autotest.add_exception(exception) }
 
end