zookeeper 1.5.3 → 1.5.4

Sign up to get free protection for your applications and to get access to all the features.
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.exists?(release_ops_path)
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.3
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: 2022-07-18 00:00:00.000000000 Z
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.3
136
+ rubygems_version: 3.2.4
137
137
  signing_key:
138
138
  specification_version: 4
139
139
  summary: Apache ZooKeeper driver for Rubies