Growl-glue update now supports the RSpec "pending" status

Posted by collin
on Sunday, July 27

Growl-glue 1.0.2 was released today. The update adds support for a “pending” status. Without any extra configuration, the gem will use a yellow graphic to match the text in the terminal and will also output a unique title for the growl notification.

The “pending” status is configured similarly to the “failure” and “success” statuses:

GrowlGlue::Autotest.initialize do |config|

    config.notification :use_network_notifications => true
    config.title :success => "Love", :failure => "Hate", :pending => "Keep Going!" 
    config.say :failure => "Something is horribly wrong!" 
    config.say :pending => "I know you can do it!" 

end

To update, simply:

% sudo gem install growl-glue

If you’re wondering what growl-glue is, read the introductory post or the README.

Comments

Leave a response