real-growl 0.6.1 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/ext/extconf.rb +6 -1
  2. data/ext/ruby_delegate.c +1 -1
  3. metadata +32 -50
@@ -2,7 +2,12 @@
2
2
  require 'mkmf'
3
3
 
4
4
 
5
- $CFLAGS << ' ' + "-ObjC "
5
+ $CFLAGS << ' ' + "-ObjC "
6
+
7
+ if defined?(RUBY_ENGINE) && RUBY_ENGINE == "macruby"
8
+ $CFLAGS << ' ' + "-fobjc-gc"
9
+ end
10
+
6
11
  $LDFLAGS << ' ' + "-lobjc -framework Foundation -framework Growl"
7
12
  $objs = %w(ruby_delegate.o real_growl_api.o)
8
13
 
@@ -4,7 +4,7 @@
4
4
  @synthesize applicationName, callbackProc;
5
5
 
6
6
  -(id)init {
7
- if(self = [super init]) {
7
+ if((self = [super init])) {
8
8
  applicationName = [@"RealGrowl" retain];
9
9
  return self;
10
10
  }
metadata CHANGED
@@ -1,45 +1,37 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: real-growl
3
- version: !ruby/object:Gem::Version
4
- hash: 5
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.7.0
5
5
  prerelease:
6
- segments:
7
- - 0
8
- - 6
9
- - 1
10
- version: 0.6.1
11
6
  platform: ruby
12
- authors:
7
+ authors:
13
8
  - Justin DeWind
14
9
  autorequire:
15
10
  bindir: bin
16
11
  cert_chain: []
17
-
18
- date: 2011-06-02 00:00:00 Z
19
- dependencies:
20
- - !ruby/object:Gem::Dependency
12
+ date: 2011-12-18 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
21
15
  name: slop
22
- prerelease: false
23
- requirement: &id001 !ruby/object:Gem::Requirement
16
+ requirement: &2156133380 !ruby/object:Gem::Requirement
24
17
  none: false
25
- requirements:
26
- - - ">="
27
- - !ruby/object:Gem::Version
28
- hash: 3
29
- segments:
30
- - 0
31
- version: "0"
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
32
22
  type: :runtime
33
- version_requirements: *id001
34
- description: A Growl notification library that uses native c bindings to interact with GrowlApplicationBridge rather than Growl's network API.
23
+ prerelease: false
24
+ version_requirements: *2156133380
25
+ description: A Growl notification library that uses native c bindings to interact
26
+ with GrowlApplicationBridge rather than Growl's network API.
35
27
  email: dewind@atomicobject.com
36
- executables:
28
+ executables:
37
29
  - realgrowl
38
- extensions:
30
+ extensions:
39
31
  - ext/extconf.rb
40
- extra_rdoc_files:
32
+ extra_rdoc_files:
41
33
  - README.md
42
- files:
34
+ files:
43
35
  - Rakefile
44
36
  - ext/real_growl_api.c
45
37
  - ext/real_growl_api.h
@@ -51,36 +43,26 @@ files:
51
43
  - ext/extconf.rb
52
44
  homepage: http://github.com/dewind/real-growl
53
45
  licenses: []
54
-
55
46
  post_install_message:
56
47
  rdoc_options: []
57
-
58
- require_paths:
48
+ require_paths:
59
49
  - lib
60
- required_ruby_version: !ruby/object:Gem::Requirement
50
+ required_ruby_version: !ruby/object:Gem::Requirement
61
51
  none: false
62
- requirements:
63
- - - ">="
64
- - !ruby/object:Gem::Version
65
- hash: 3
66
- segments:
67
- - 0
68
- version: "0"
69
- required_rubygems_version: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - ! '>='
54
+ - !ruby/object:Gem::Version
55
+ version: '0'
56
+ required_rubygems_version: !ruby/object:Gem::Requirement
70
57
  none: false
71
- requirements:
72
- - - ">="
73
- - !ruby/object:Gem::Version
74
- hash: 3
75
- segments:
76
- - 0
77
- version: "0"
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
78
62
  requirements: []
79
-
80
63
  rubyforge_project:
81
- rubygems_version: 1.7.2
64
+ rubygems_version: 1.8.10
82
65
  signing_key:
83
66
  specification_version: 3
84
67
  summary: Growl notification library that was built using native c bindings.
85
68
  test_files: []
86
-