growlnotifier 1.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.txt +2 -0
- data/lib/growl.rb +1 -1
- data/samples/growl_block_sample.rb +2 -2
- data/samples/growl_delegate_sample.rb +2 -2
- metadata +1 -1
data/README.txt
CHANGED
@@ -25,6 +25,7 @@ A simple example:
|
|
25
25
|
|
26
26
|
How to receive clicked and timeout notifications in your application:
|
27
27
|
|
28
|
+
require 'rubygems'
|
28
29
|
require 'growl'
|
29
30
|
|
30
31
|
class GrowlController < OSX::NSObject
|
@@ -49,6 +50,7 @@ How to receive clicked and timeout notifications in your application:
|
|
49
50
|
|
50
51
|
Include the Growl module into your class to get access to a few convenience methods:
|
51
52
|
|
53
|
+
require 'rubygems'
|
52
54
|
require 'growl'
|
53
55
|
|
54
56
|
class GrowlController < OSX::NSObject
|
data/lib/growl.rb
CHANGED