growlnotifier 1.0 → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -2,7 +2,7 @@ require 'osx/cocoa'
2
2
 
3
3
  module Growl
4
4
  class Notifier < OSX::NSObject
5
- VERSION = '1.0'
5
+ VERSION = '1.0.1'
6
6
 
7
7
  GROWL_IS_READY = "Lend Me Some Sugar; I Am Your Neighbor!"
8
8
  GROWL_NOTIFICATION_CLICKED = "GrowlClicked!"
@@ -1,5 +1,5 @@
1
- require 'osx/cocoa'
2
- require File.expand_path('../../lib/growl_helpers', __FILE__)
1
+ require 'rubygems'
2
+ require 'growl_helpers'
3
3
 
4
4
  class GrowlController < OSX::NSObject
5
5
  # Makes the #growl and #sticky_growl shortcut methods available.
@@ -1,5 +1,5 @@
1
- require 'osx/cocoa'
2
- require File.expand_path('../../lib/growl', __FILE__)
1
+ require 'rubygems'
2
+ require 'growl'
3
3
 
4
4
  class GrowlController < OSX::NSObject
5
5
  HELLO_TYPE = 'Hello message received'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: growlnotifier
3
3
  version: !ruby/object:Gem::Version
4
- version: "1.0"
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Satoshi Nakagawa