- #34: Support for
*_tests.rb
. (@pastorius)
- Updated for Guard 1.1. (@rymai)
- #21: Guard::Test::Notifier.notify - did not use :failed image if test results included errors but NO failures. (@carlost)
- #18: Fixed a conflict with test_benchmark that was preventing guard-test from running. (@rymai)
- #11: Fixed a "No such file to load -- guard/notifier" when running guard without bundler. (@rymai)
- Removed support of turn gem since "Turn is no longer compatible with TestUnit 2.0+. TestUnit and MiniTest are deverging and after some consideration it was decided that Turn's goal is to support Ruby's native test framework, whatever it may be." quoted from Turn's release.txt. (@rymai)
- New
:drb
option enabling the use ofspork-testunit
gem (be sure to use guard-spork as well). (@rymai)
- Internal cleaning. (@rymai)
- Fixed bug that was preventing tests from running. (@rymai)
- Fixed the
fastfail
runner that was displaying a green dot even for a failing test. (@rymai) - Removed the
:notification
option. Use the new Guard method instead. (@rymai)
- Turn seems to work fine now... (@rymai)
- Consider 'test_*.rb' as test files as well. (@uk-ar)
- Add a require that was making the guard be fired by Guard! :'( (@rymai)
- Actually make the tests run. (@rymai)
- Turn doesn't want to run, so remove sentences that say that it is supported for now. Note: The code is still here, only the command line doesn't seem to output anything... (@rymai)
- New
:cli
option (nil by default) to pass arbitrary CLI arguments to the Ruby/Turn command that runs the tests. (@rymai) - New
:notification
option (true by default) to disable notification (Growl/Inotify). (@rymai) - New
:all_on_start
option (true by default) to not run all the tests at startup. (@rymai) - New
:all_after_pass
option (true by default) to run all tests after changed tests pass. (@rymai) - New
:keep_failed
option (true by default) to keep failed tests until them pass. (@rymai)
- Added compatibility with 1.8.6, 1.8.7, 1.9.2, REE, Rubinius and JRuby. (@rymai)
- Internal changes inspired by guard-minitest. (@rymai)
- Updated gem dependencies. (@rymai)
- #1: Include errors count to determine the "flag" to display in notification. (@gregorymostizky)