Revision
3064
Author
eloy.de.enige@gmail.com
Date
2009-11-30 13:04:26 -0800 (Mon, 30 Nov 2009)

Log Message

Add at least the url to where the original growlnotifier code is.

Modified Paths

Diff

Modified: MacRuby/trunk/sample-macruby/Scripts/growl/growl.rb (3063 => 3064)


--- MacRuby/trunk/sample-macruby/Scripts/growl/growl.rb	2009-11-30 07:35:11 UTC (rev 3063)
+++ MacRuby/trunk/sample-macruby/Scripts/growl/growl.rb	2009-11-30 21:04:26 UTC (rev 3064)
@@ -1,3 +1,5 @@
+# Original code: http://github.com/psychs/growlnotifier
+
 framework 'Cocoa'
 
 module Growl

Modified: MacRuby/trunk/sample-macruby/Scripts/growl/growl_block_sample.rb (3063 => 3064)


--- MacRuby/trunk/sample-macruby/Scripts/growl/growl_block_sample.rb	2009-11-30 07:35:11 UTC (rev 3063)
+++ MacRuby/trunk/sample-macruby/Scripts/growl/growl_block_sample.rb	2009-11-30 21:04:26 UTC (rev 3064)
@@ -1,3 +1,5 @@
+# Original code: http://github.com/psychs/growlnotifier
+
 require 'growl_helpers'
 
 class GrowlController

Modified: MacRuby/trunk/sample-macruby/Scripts/growl/growl_delegate_sample.rb (3063 => 3064)


--- MacRuby/trunk/sample-macruby/Scripts/growl/growl_delegate_sample.rb	2009-11-30 07:35:11 UTC (rev 3063)
+++ MacRuby/trunk/sample-macruby/Scripts/growl/growl_delegate_sample.rb	2009-11-30 21:04:26 UTC (rev 3064)
@@ -1,3 +1,5 @@
+# Original code: http://github.com/psychs/growlnotifier
+
 require 'growl'
 
 class GrowlController

Modified: MacRuby/trunk/sample-macruby/Scripts/growl/growl_helpers.rb (3063 => 3064)


--- MacRuby/trunk/sample-macruby/Scripts/growl/growl_helpers.rb	2009-11-30 07:35:11 UTC (rev 3063)
+++ MacRuby/trunk/sample-macruby/Scripts/growl/growl_helpers.rb	2009-11-30 21:04:26 UTC (rev 3064)
@@ -1,3 +1,5 @@
+# Original code: http://github.com/psychs/growlnotifier
+
 require File.expand_path('../growl', __FILE__)
 
 # Defines a few convenience methods that you can use in your class if you include the Growl module.