rb-fsevent 0.3.6 → 0.3.8
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/ext/extconf.rb +16 -14
- data/lib/rb-fsevent/fsevent.rb +1 -0
- data/lib/rb-fsevent/version.rb +1 -1
- metadata +4 -4
data/ext/extconf.rb
CHANGED
@@ -2,18 +2,20 @@
|
|
2
2
|
require 'mkmf'
|
3
3
|
create_makefile('none')
|
4
4
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
system "
|
16
|
-
|
17
|
-
|
18
|
-
|
5
|
+
if `uname -s`.chomp != 'Darwin'
|
6
|
+
puts "Warning! Only Darwin (Mac OS X) systems are supported, nothing will be compiled"
|
7
|
+
else
|
8
|
+
gem_root = File.expand_path(File.join('..'))
|
9
|
+
darwin_verion = `uname -r`.to_i
|
10
|
+
sdk_verion = { 9 => '10.5', 10 => '10.6', 11 => '10.7' }[darwin_verion]
|
11
|
+
|
12
|
+
raise "Only Darwin systems greather than 8 (Mac OS X 10.5+) are supported" unless sdk_verion
|
13
|
+
|
14
|
+
# Compile the actual fsevent_watch binary
|
15
|
+
system "mkdir -p #{File.join(gem_root, 'bin')}"
|
16
|
+
system "CFLAGS='-isysroot /Developer/SDKs/MacOSX#{sdk_verion}.sdk -mmacosx-version-min=#{sdk_verion}' /usr/bin/gcc -framework CoreServices -o '#{gem_root}/bin/fsevent_watch' fsevent/fsevent_watch.c"
|
17
|
+
|
18
|
+
unless File.executable?("#{gem_root}/bin/fsevent_watch")
|
19
|
+
raise "Compilation of fsevent_watch failed (see README)"
|
20
|
+
end
|
19
21
|
end
|
data/lib/rb-fsevent/fsevent.rb
CHANGED
data/lib/rb-fsevent/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rb-fsevent
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 3
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 3
|
9
|
-
-
|
10
|
-
version: 0.3.
|
9
|
+
- 8
|
10
|
+
version: 0.3.8
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Thibaud Guillaume-Gentil
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-11-
|
18
|
+
date: 2010-11-11 00:00:00 +01:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|