Created
February 23, 2012 07:45
-
-
Save nicokruger/1891367 to your computer and use it in GitHub Desktop.
Guardfile for auto test running
This file contains 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
guard 'shell' do | |
watch(%r"tests/.*test\..*") {|m| | |
`node bgtests.js` | |
} | |
watch(%r"js/.*js") {|m| | |
`node bgtests.js` | |
} | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment