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 CHANGED
@@ -21,6 +21,7 @@ rvm:
21
21
  - jruby-19mode
22
22
  - rbx-18mode
23
23
  - rbx-19mode
24
+ - 2.0.0
24
25
  matrix:
25
26
  allow_failures:
26
27
  - rvm: rbx-18mode
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ v1.4.3 fix build for ruby 2.0.0-rc2
2
+
3
+ * https://github.com/slyphon/zookeeper/pull/34
4
+
1
5
  v1.4.2 fix a bug in the forwarding logger format string
2
6
 
3
7
  v1.4.1 merge pull request 29 - fix exception handling in jruby 1.7.x
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);
@@ -1,4 +1,4 @@
1
1
  module Zookeeper
2
- VERSION = '1.4.2'
2
+ VERSION = '1.4.3'
3
3
  DRIVER_VERSION = '3.3.5'
4
4
  end
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: 3
4
+ hash: 1
5
5
  prerelease:
6
6
  segments:
7
7
  - 1
8
8
  - 4
9
- - 2
10
- version: 1.4.2
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-01-10 00:00:00 Z
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.24
145
+ rubygems_version: 1.8.25
146
146
  signing_key:
147
147
  specification_version: 3
148
148
  summary: Apache ZooKeeper driver for Rubies