Skip to content

Instantly share code, notes, and snippets.

@nesquena
Created June 30, 2010 22:23
Show Gist options
  • Save nesquena/459301 to your computer and use it in GitHub Desktop.
Save nesquena/459301 to your computer and use it in GitHub Desktop.
Autotest Instructions
# http://ph7spot.com/musings/getting-started-with-autotest
$ gem install redgreen autotest-standalone autotest-fsevent autotest-growl autotest-rails-pure
$ mate ~/.autotest
require 'redgreen/autotest'
require 'autotest/timestamp'
require 'autotest/growl'
require 'autotest/fsevent'
require "autotest/restart"
Autotest.add_hook :initialize do |autotest|
%w{.git .svn .hg .DS_Store ._* vendor tmp log doc}.each {|exception| autotest.add_exception(exception) }
false
end
$ cd path/to/miso
$ autotest -fc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment