zookeeper 1.4.2 → 1.4.3
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/.travis.yml +1 -0
- data/CHANGELOG +4 -0
- data/ext/zkrb.c +2 -2
- data/lib/zookeeper/version.rb +1 -1
- metadata +5 -5
data/.travis.yml
CHANGED
data/CHANGELOG
CHANGED
data/ext/zkrb.c
CHANGED
@@ -145,7 +145,7 @@ inline static void assert_valid_params(VALUE reqid, VALUE path) {
|
|
145
145
|
}
|
146
146
|
|
147
147
|
inline static zkrb_call_type get_call_type(VALUE async, VALUE watch) {
|
148
|
-
if RTEST(async) {
|
148
|
+
if (RTEST(async)) {
|
149
149
|
return RTEST(watch) ? ASYNC_WATCH : ASYNC;
|
150
150
|
} else {
|
151
151
|
return RTEST(watch) ? SYNC_WATCH : SYNC;
|
@@ -758,7 +758,7 @@ inline static int get_self_pipe_read_fd(VALUE self) {
|
|
758
758
|
rb_io_t *fptr;
|
759
759
|
VALUE pipe_read = rb_iv_get(self, "@pipe_read");
|
760
760
|
|
761
|
-
if NIL_P(pipe_read)
|
761
|
+
if (NIL_P(pipe_read))
|
762
762
|
rb_raise(rb_eRuntimeError, "@pipe_read was nil!");
|
763
763
|
|
764
764
|
GetOpenFile(pipe_read, fptr);
|
data/lib/zookeeper/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zookeeper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 1
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 4
|
9
|
-
-
|
10
|
-
version: 1.4.
|
9
|
+
- 3
|
10
|
+
version: 1.4.3
|
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: 2013-
|
23
|
+
date: 2013-02-19 00:00:00 Z
|
24
24
|
dependencies: []
|
25
25
|
|
26
26
|
description: |+
|
@@ -142,7 +142,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
142
142
|
requirements: []
|
143
143
|
|
144
144
|
rubyforge_project:
|
145
|
-
rubygems_version: 1.8.
|
145
|
+
rubygems_version: 1.8.25
|
146
146
|
signing_key:
|
147
147
|
specification_version: 3
|
148
148
|
summary: Apache ZooKeeper driver for Rubies
|