slyphon-zookeeper 0.8.3 → 0.8.4
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +6 -0
- data/lib/zookeeper.rb +4 -1
- data/slyphon-zookeeper.gemspec +1 -1
- metadata +5 -5
data/CHANGELOG
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
v0.8.4 fix NameError, require 'forwardable'
|
2
|
+
|
3
|
+
* Really not sure why this didn't come up in tests
|
4
|
+
|
5
|
+
* issue here https://github.com/slyphon/zk/issues/22
|
6
|
+
|
1
7
|
v0.8.3 fix NonLocalJump exception in event delivery thread shutdown code
|
2
8
|
|
3
9
|
* hit a corner case where we're waiting for the zkc handle setup
|
data/lib/zookeeper.rb
CHANGED
@@ -2,13 +2,16 @@
|
|
2
2
|
|
3
3
|
require 'thread'
|
4
4
|
require 'monitor'
|
5
|
+
require 'forwardable'
|
6
|
+
require 'logger'
|
7
|
+
|
5
8
|
require 'zookeeper/common'
|
6
9
|
require 'zookeeper/constants'
|
7
10
|
require 'zookeeper/callbacks'
|
8
11
|
require 'zookeeper/exceptions'
|
9
12
|
require 'zookeeper/stat'
|
10
13
|
require 'zookeeper/acls'
|
11
|
-
|
14
|
+
|
12
15
|
|
13
16
|
if defined?(::JRUBY_VERSION)
|
14
17
|
$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.8.
|
6
|
+
s.version = '0.8.4'
|
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: 55
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 8
|
9
|
-
-
|
10
|
-
version: 0.8.
|
9
|
+
- 4
|
10
|
+
version: 0.8.4
|
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-26 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: -4002739438
|
66
66
|
segments:
|
67
67
|
- 1
|
68
68
|
- 0
|