slyphon-zookeeper 0.8.4 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +14 -4
- data/Rakefile +1 -1
- data/ext/Rakefile +23 -1
- data/ext/depend +3 -1
- data/ext/extconf.rb +4 -0
- data/ext/generate_gvl_code.rb +332 -0
- data/ext/zkrb_wrapper.c +917 -0
- data/ext/zkrb_wrapper.h +330 -0
- data/ext/zkrb_wrapper_compat.c +15 -0
- data/ext/zkrb_wrapper_compat.h +11 -0
- data/ext/zookeeper_c.c +53 -49
- data/lib/zookeeper.rb +1 -4
- data/slyphon-zookeeper.gemspec +1 -1
- metadata +11 -6
data/lib/zookeeper.rb
CHANGED
@@ -2,16 +2,13 @@
|
|
2
2
|
|
3
3
|
require 'thread'
|
4
4
|
require 'monitor'
|
5
|
-
require 'forwardable'
|
6
|
-
require 'logger'
|
7
|
-
|
8
5
|
require 'zookeeper/common'
|
9
6
|
require 'zookeeper/constants'
|
10
7
|
require 'zookeeper/callbacks'
|
11
8
|
require 'zookeeper/exceptions'
|
12
9
|
require 'zookeeper/stat'
|
13
10
|
require 'zookeeper/acls'
|
14
|
-
|
11
|
+
require 'logger'
|
15
12
|
|
16
13
|
if defined?(::JRUBY_VERSION)
|
17
14
|
$LOAD_PATH.unshift(File.expand_path('../java', File.dirname(__FILE__))).uniq!
|
data/slyphon-zookeeper.gemspec
CHANGED
@@ -3,7 +3,7 @@ $:.push File.expand_path("../lib", __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "slyphon-zookeeper"
|
6
|
-
s.version = '0.
|
6
|
+
s.version = '0.9.0'
|
7
7
|
|
8
8
|
s.authors = ["Phillip Pearson", "Eric Maland", "Evan Weaver", "Brian Wickman", "Neil Conway", "Jonathan D. Simms"]
|
9
9
|
s.email = ["slyphon@gmail.com"]
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: slyphon-zookeeper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 59
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
-
|
10
|
-
version: 0.
|
8
|
+
- 9
|
9
|
+
- 0
|
10
|
+
version: 0.9.0
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Phillip Pearson
|
@@ -20,7 +20,7 @@ autorequire:
|
|
20
20
|
bindir: bin
|
21
21
|
cert_chain: []
|
22
22
|
|
23
|
-
date: 2012-04-
|
23
|
+
date: 2012-04-25 00:00:00 Z
|
24
24
|
dependencies:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: rspec
|
@@ -62,7 +62,7 @@ dependencies:
|
|
62
62
|
requirements:
|
63
63
|
- - "="
|
64
64
|
- !ruby/object:Gem::Version
|
65
|
-
hash:
|
65
|
+
hash: 1388313431
|
66
66
|
segments:
|
67
67
|
- 1
|
68
68
|
- 0
|
@@ -142,7 +142,12 @@ files:
|
|
142
142
|
- ext/dbg.h
|
143
143
|
- ext/depend
|
144
144
|
- ext/extconf.rb
|
145
|
+
- ext/generate_gvl_code.rb
|
145
146
|
- ext/zkc-3.3.4.tar.gz
|
147
|
+
- ext/zkrb_wrapper.c
|
148
|
+
- ext/zkrb_wrapper.h
|
149
|
+
- ext/zkrb_wrapper_compat.c
|
150
|
+
- ext/zkrb_wrapper_compat.h
|
146
151
|
- ext/zookeeper_base.rb
|
147
152
|
- ext/zookeeper_c.c
|
148
153
|
- ext/zookeeper_lib.c
|