-r allows executing a require statement from the command line.
-e allows executing arbitrary ruby from the command line.
These two options will enable a fix for issue guard/guard-minitest#11 in the guard-minitest repo: "No notification when running with spork server." With the fix, you can run your test suite under guard with spork and test-unit, and get a growl notification (if you wish) when each time the tests are complete.
I am about to send a pull request in the guard-minitest repo asking them to take the other part of this fix.
-r
allows executing arequire
statement from the command line.-e
allows executing arbitrary ruby from the command line.These two options will enable a fix for issue guard/guard-minitest#11 in the
guard-minitest
repo: "No notification when running with spork server." With the fix, you can run your test suite underguard
withspork
andtest-unit
, and get agrowl
notification (if you wish) when each time the tests are complete.I am about to send a pull request in the guard-minitest repo asking them to take the other part of this fix.