Modified: MacRuby/trunk/sample-macruby/Scripts/growl/hotcocoa_growl.rb (628 => 629)
--- MacRuby/trunk/sample-macruby/Scripts/growl/hotcocoa_growl.rb 2008-09-27 00:41:51 UTC (rev 628)
+++ MacRuby/trunk/sample-macruby/Scripts/growl/hotcocoa_growl.rb 2008-09-27 00:59:52 UTC (rev 629)
@@ -3,10 +3,10 @@
class Growl
include HotCocoa
- GROWL_IS_READY = "Lend Me Some Sugar; I Am Your Neighbor!"
- GROWL_NOTIFICATION_CLICKED = "GrowlClicked!"
- GROWL_NOTIFICATION_TIMED_OUT = "GrowlTimedOut!"
- GROWL_KEY_CLICKED_CONTEXT = "ClickedContext"
+ GROWL_IS_READY = 'Lend Me Some Sugar; I Am Your Neighbor!'
+ GROWL_NOTIFICATION_CLICKED = 'GrowlClicked!'
+ GROWL_NOTIFICATION_TIMED_OUT = 'GrowlTimedOut!'
+ GROWL_KEY_CLICKED_CONTEXT = 'ClickedContext'
PRIORITIES = {
:emergency => 2,
@@ -68,7 +68,7 @@
:ApplicationName => @app_name,
:ApplicationIcon => @app_icon.TIFFRepresentation,
:AllNotifications => @notifications,
- :DefaultNotifications => @default_notifications
+ :DefaultNotifications => @default_notifications,
}
notification :distributed => true, :name => :GrowlApplicationRegistrationNotification, :info => dic
end