Skip to content

Instantly share code, notes, and snippets.

@maxschulze
Created October 9, 2010 18:45
Show Gist options
  • Save maxschulze/618474 to your computer and use it in GitHub Desktop.
Save maxschulze/618474 to your computer and use it in GitHub Desktop.
Speed up autotest with excluding not needed rails app directories
require 'autotest/growl'
Autotest.add_hook :initialize do |at|
%w{.svn .hg .git vendor db public log script doc}.each {|exception| at.add_exception(exception)}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment