Created
June 28, 2011 08:27
-
-
Save BugRoger/1050727 to your computer and use it in GitHub Desktop.
.autotest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "autotest/growl" | |
require "autotest/fsevent" | |
require "autotest/bundler" | |
Autotest::Growl::image_dir = File.join(ENV['HOME'], '.autotest_images') | |
Autotest::Growl::show_modified_files = true | |
Autotest.add_hook :initialize do |autotest| | |
%w(.git .DS_Store db log tmp).each do |exception| | |
autotest.add_exception(exception) | |
end | |
autotest.order = :random | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment