(1..100).each {|num| Growl.new(:message => "I am number #{num}!").run}
Change the number to 1000, as I did, and don’t plan on seeing your desktop for a while. Add :sticky => true
for extra “fun”.
Tags: ruby
(1..100).each {|num| Growl.new(:message => "I am number #{num}!").run}
Change the number to 1000, as I did, and don’t plan on seeing your desktop for a while. Add :sticky => true
for extra “fun”.
Tags: ruby
July 8th, 2009 at 9:30 am
Which Growl library are you using?
July 8th, 2009 at 6:10 pm
The library in the example is .
July 9th, 2009 at 12:40 am
Ahh nice. I like that a little better then the ruby-growl gem I was using. Thanks.