Ruby gem for Growl

I’m looking for a gem that’s able to send Growl notifications and
receive a click-event on the notification. There are some gems available
but the problem is none of them seem to be compatible with Ruby 1.9. Any
suggestions?

Hi!

How about ruby-growl?
I use ruby-growl on ruby1.9 with following patch.

require ‘digest/md5’
module MD5
def self.new(packet)
Digest::MD5.new.update packet
end
end

jugyo kohno wrote:

Hi!

How about ruby-growl?
I use ruby-growl on ruby1.9 with following patch.

require ‘digest/md5’
module MD5
def self.new(packet)
Digest::MD5.new.update packet
end
end
Doesn’t appear to be able to capture a click-event which is pretty
important for what I want to use it for.

On May 21, 2010, at 01:58 , Dimitri Df wrote:

I’m looking for a gem that’s able to send Growl notifications and
receive a click-event on the notification. There are some gems available
but the problem is none of them seem to be compatible with Ruby 1.9. Any
suggestions?

growl has click events? Google hints no with:

site:growl.info click event - Google Search

but that might not be the terminology they’re using.

Ryan D. wrote:

On May 21, 2010, at 01:58 , Dimitri Df wrote:

I’m looking for a gem that’s able to send Growl notifications and
receive a click-event on the notification. There are some gems available
but the problem is none of them seem to be compatible with Ruby 1.9. Any
suggestions?

growl has click events? Google hints no with:

site:growl.info click event - Google Search

but that might not be the terminology they’re using.

from http://growl.info/documentation/developer/introduction.php

"Click context

When you supply a non-NULL click context for a notification, and a click
callback in the delegate, GAB calls back to your application when the
notification is clicked or times out."

Hi!

How about Growl::Notifier?
it can receive click event.
it require RubyCocoa.