Created
June 30, 2010 22:23
-
-
Save nesquena/459301 to your computer and use it in GitHub Desktop.
Autotest Instructions
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
| # 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