Revision: 629 http://trac.macosforge.org/projects/ruby/changeset/629 Author: psychs@limechat.net Date: 2008-09-26 17:59:52 -0700 (Fri, 26 Sep 2008) Log Message: ----------- tweaked Modified Paths: -------------- MacRuby/trunk/sample-macruby/Scripts/growl/hotcocoa_growl.rb Modified: MacRuby/trunk/sample-macruby/Scripts/growl/hotcocoa_growl.rb =================================================================== --- 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