real-growl 0.4.1 → 0.4.2
Sign up to get free protection for your applications and to get access to all the features.
- data/ext/extconf.rb +4 -6
- metadata +6 -6
data/ext/extconf.rb
CHANGED
@@ -7,16 +7,14 @@ $LDFLAGS << ' ' + "-lobjc -framework Foundation -framework Growl"
|
|
7
7
|
$objs = %w(ruby_delegate.o real_growl_api.o)
|
8
8
|
|
9
9
|
def growl_framework_paths
|
10
|
-
["/Library/Frameworks/Growl.framework"
|
10
|
+
["/Library/Frameworks/Growl.framework"]
|
11
11
|
end
|
12
12
|
|
13
13
|
if(growl_framework_paths.any? {|x| File.exists?(x)})
|
14
14
|
message("checking for framework Growl... yes\n")
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
create_makefile(extension_name)
|
19
|
-
end
|
15
|
+
extension_name = 'real_growl_api'
|
16
|
+
dir_config(extension_name)
|
17
|
+
create_makefile(extension_name)
|
20
18
|
else
|
21
19
|
message("checking for framework Growl... no\n")
|
22
20
|
end
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: real-growl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 11
|
5
|
+
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 4
|
9
|
-
-
|
10
|
-
version: 0.4.
|
9
|
+
- 2
|
10
|
+
version: 0.4.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Justin DeWind
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date:
|
18
|
+
date: 2011-04-22 00:00:00 -04:00
|
19
19
|
default_executable:
|
20
20
|
dependencies: []
|
21
21
|
|
@@ -66,7 +66,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
66
66
|
requirements: []
|
67
67
|
|
68
68
|
rubyforge_project:
|
69
|
-
rubygems_version: 1.
|
69
|
+
rubygems_version: 1.5.0
|
70
70
|
signing_key:
|
71
71
|
specification_version: 3
|
72
72
|
summary: Growl notification library that uses native c bindings.
|