zookeeper 1.5.3 → 1.5.4
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.
- checksums.yaml +4 -4
- data/.github/workflows/build.yml +6 -0
- data/CHANGELOG +3 -0
- data/Gemfile +2 -2
- data/Rakefile +2 -2
- data/ext/Rakefile +2 -2
- data/ext/extconf.rb +2 -2
- data/lib/zookeeper/version.rb +1 -1
- data/spec/c_zookeeper_spec.rb +6 -6
- data/spec/chrooted_connection_spec.rb +8 -8
- data/spec/compatibilty_spec.rb +1 -1
- data/spec/default_watcher_spec.rb +6 -6
- data/spec/em_spec.rb +3 -3
- data/spec/ext/zookeeper_base_spec.rb +1 -1
- data/spec/forked_connection_spec.rb +4 -4
- data/spec/latch_spec.rb +1 -1
- data/spec/shared/all_success_return_values.rb +2 -2
- data/spec/shared/connection_examples.rb +186 -194
- data/spec/spec_helper.rb +2 -2
- data/zookeeper.gemspec +5 -5
- metadata +4 -4
data/spec/spec_helper.rb
CHANGED
@@ -6,7 +6,7 @@ require 'rubygems'
|
|
6
6
|
|
7
7
|
release_ops_path = File.expand_path('../../releaseops/lib', __FILE__)
|
8
8
|
|
9
|
-
if File.
|
9
|
+
if File.exist?(release_ops_path)
|
10
10
|
require File.join(release_ops_path, 'releaseops')
|
11
11
|
ReleaseOps::SimpleCov.maybe_start
|
12
12
|
end
|
@@ -34,7 +34,7 @@ RSpec.configure do |config|
|
|
34
34
|
if Zookeeper.spawn_zookeeper?
|
35
35
|
require 'zk-server'
|
36
36
|
|
37
|
-
config.before(:suite) do
|
37
|
+
config.before(:suite) do
|
38
38
|
SpecGlobalLogger.logger.debug { "Starting zookeeper service" }
|
39
39
|
ZK::Server.run do |c|
|
40
40
|
c.base_dir = File.expand_path('../../.zkserver', __FILE__)
|
data/zookeeper.gemspec
CHANGED
@@ -7,10 +7,10 @@ Gem::Specification.new do |s|
|
|
7
7
|
s.version = Zookeeper::VERSION
|
8
8
|
|
9
9
|
s.authors = [
|
10
|
-
"Phillip Pearson",
|
11
|
-
"Eric Maland",
|
12
|
-
"Evan Weaver",
|
13
|
-
"Brian Wickman",
|
10
|
+
"Phillip Pearson",
|
11
|
+
"Eric Maland",
|
12
|
+
"Evan Weaver",
|
13
|
+
"Brian Wickman",
|
14
14
|
"Neil Conway",
|
15
15
|
"Jonathan D. Simms",
|
16
16
|
"Mal McKay",
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
20
20
|
s.description = <<-EOS
|
21
21
|
A low-level multi-Ruby wrapper around the ZooKeeper API bindings. For a
|
22
22
|
friendlier interface, see http://github.com/slyphon/zk. Currently supported:
|
23
|
-
MRI: {2.5, 2.6, 2.7, 3.0}, JRuby: ~> 9.2.x.x
|
23
|
+
MRI: {2.5, 2.6, 2.7, 3.0, 3.1, 3.2}, JRuby: ~> 9.2.x.x
|
24
24
|
|
25
25
|
This library uses version #{Zookeeper::DRIVER_VERSION} of zookeeper bindings.
|
26
26
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: zookeeper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Phillip Pearson
|
@@ -14,12 +14,12 @@ authors:
|
|
14
14
|
autorequire:
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
|
-
date:
|
17
|
+
date: 2023-01-05 00:00:00.000000000 Z
|
18
18
|
dependencies: []
|
19
19
|
description: |+
|
20
20
|
A low-level multi-Ruby wrapper around the ZooKeeper API bindings. For a
|
21
21
|
friendlier interface, see http://github.com/slyphon/zk. Currently supported:
|
22
|
-
MRI: {2.5, 2.6, 2.7, 3.0}, JRuby: ~> 9.2.x.x
|
22
|
+
MRI: {2.5, 2.6, 2.7, 3.0, 3.1, 3.2}, JRuby: ~> 9.2.x.x
|
23
23
|
|
24
24
|
This library uses version 3.4.5 of zookeeper bindings.
|
25
25
|
|
@@ -133,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
133
133
|
- !ruby/object:Gem::Version
|
134
134
|
version: '0'
|
135
135
|
requirements: []
|
136
|
-
rubygems_version: 3.2.
|
136
|
+
rubygems_version: 3.2.4
|
137
137
|
signing_key:
|
138
138
|
specification_version: 4
|
139
139
|
summary: Apache ZooKeeper driver for Rubies
|