While trying to set up Growl notification from autotest today I came across a nifty little gem called growl-glue. Growl-glue makes autotest play nicely with Growl without having to jump through hoops in your .autotest configuration.
Installation is a snap, just sudo gem install growl-glue and then add this snippet to your .autotest config:
require 'growl_glue'
GrowlGlue::Autotest.initialize
You can configure the images that are displayed, enable sound playback depending on what the autotest result is, and so on. I really love little gems like this that do one task well and make my life a little bit easier.
