pools 1.2.0 → 2.0.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 34f31d2ae9607c1157db230bcb465c9f8a53c471c7308fd7e8c37a4f218fb13c
4
- data.tar.gz: 9c1727c836239fca1a527f8b292cad8ad14ddfd0a5befac773392b3b80b3c741
3
+ metadata.gz: 460de6de46759d3160426610e1a5fdc6a50b4476e6775dc721949638be980718
4
+ data.tar.gz: 28bc2c93bebea91f91b43f3a53a8d9a3ca005ad3b574b118a129dcf8d1142a9a
5
5
  SHA512:
6
- metadata.gz: dae2b78c89af30a3447a76cc89c6f3d7f60f9a3ea24d53789f30cbf2b97447f18f2d5878085ad5411210d97a80dba0679852285acd93c1ce79720fc7ddd3f704
7
- data.tar.gz: 3a0ce250ef1ec98c0169361d701cfb7442359d645de8cd3647c8be5ba13927cae6d0435ae1ff54ed221d6a9f14596d767c807abb8216b7177aaf52740af8bd9a
6
+ metadata.gz: d1dc435f9830a1bfe54755ed7fca3bebf67b4f334ce5af922db164b44904f5886333edbc379e23938b70768762fc866c86cae281ee014c86be17caf40ebb6a96
7
+ data.tar.gz: 1431f11e93f2e3cf279a6644c7d62c4e9278fbc82de002676b208c59b981829887f7574ee20e58e4a7cb1950cb4e62c8f060bce65f4ebf7a6a370983675b424e
data/lib/pools/handler.rb CHANGED
@@ -12,7 +12,9 @@ module Pools
12
12
 
13
13
  # Add a new connection pool to the mix
14
14
  def add(pool, name = nil)
15
- @pools[name || pool.object_id] = pool
15
+ key = name || pool.object_id
16
+ raise(%Q(Pool "#{name}" already exists)) if @pools[name]
17
+ @pools[name] = pool
16
18
  end
17
19
 
18
20
  # Returns any connections in use by the current thread back to the
data/lib/pools/pooled.rb CHANGED
@@ -32,9 +32,15 @@ module Pools
32
32
  module ClassMethods
33
33
  def connection_methods(*methods)
34
34
  methods.each do |method|
35
- define_method(method) do |*params, &block|
35
+ define_method(method) do |*args, **kwargs, &block|
36
36
  with_connection do |client|
37
- client.send(method, *params, &block)
37
+ # https://bugs.ruby-lang.org/issues/14415
38
+ # Needed for pre-2.5 Ruby support
39
+ if !kwargs.empty?
40
+ client.send(method, *args, **kwargs, &block)
41
+ else
42
+ client.send(method, *args, &block)
43
+ end
38
44
  end
39
45
  end
40
46
  end
@@ -49,4 +55,4 @@ module Pools
49
55
  end
50
56
  end
51
57
  end
52
- end
58
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pools
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Michael Rykov
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-07 00:00:00.000000000 Z
11
+ date: 2022-09-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport