gene_pool 1.3.1 → 1.3.2

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +5 -0
  3. data/History.md +8 -0
  4. data/lib/gene_pool.rb +1 -1
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4483f6b4f3352edd3db3b1ef21dd48b0970e71a3
4
- data.tar.gz: f7590686a995b971cee9a146c4763a786c22cd45
3
+ metadata.gz: 4185e45cfcd0aaf6dd261f72d1d794df72952a59
4
+ data.tar.gz: a755af2d8bd162c60ed34219739206af138e69e5
5
5
  SHA512:
6
- metadata.gz: 9e929a7c83cb4fa6562d9a1b735d3ccfff704b7e72f09c1c8947d4648350c6313d115f598e22af0c1fd07b2743b482fa1fd2f6bf15876d075de61c59d60f532e
7
- data.tar.gz: e4e139e114c6c1ce496e658fd464521007137ba33eeecabb61533dbb6130d5360eccfe9871bdf66a179ff49f1be7793a7fbe656486bf11d5acd46e0ff7d0a68b
6
+ metadata.gz: b9107ae8d748c69c188ac978bf1cdba31e57af797555e76d1ddcf70a0bdf5d4f641dffcb9364f23f1b4be449b3db09575260a0b1b47737c930d584edf5176a67
7
+ data.tar.gz: 2ca1941b0689ccd6bba3be10f1410e30e23e26cdcb58c53d65182674604069572426fef646c5b55b4765e6067564073d111d265fbb9fd0fd9e013806696fa3df
data/Gemfile CHANGED
@@ -1,5 +1,10 @@
1
1
  source "http://rubygems.org"
2
2
 
3
+ platforms :rbx do
4
+ gem 'rubysl', '~> 2.0'
5
+ gem 'rubysl-test-unit'
6
+ end
7
+
3
8
  group :development do
4
9
  gem 'rake'
5
10
  gem 'rdoc'
data/History.md CHANGED
@@ -1,6 +1,14 @@
1
1
  GenePool Changelog
2
2
  =====================
3
3
 
4
+ 1.3.2 / 2014-01-06
5
+
6
+ - Fix bug where connections that failed renew and were nil were attempting to be released. (Which would generally swallow the originating exception).
7
+
8
+ 1.3.1 / 2013-12-05
9
+
10
+ - close_connection(): close method is correctly invoked when @close_proc is Symbol and connection overrides send() (LMolr)
11
+
4
12
  1.3.0 / 2012-09-10
5
13
 
6
14
  - Allow :timeout option to raise Timeout::Error if waiting for a connection exceeds this value.
@@ -137,7 +137,7 @@ class GenePool
137
137
  # Update connection for any renew's that have occurred
138
138
  connection = @with_map.delete(connection.object_id)
139
139
  end
140
- checkin(connection)
140
+ checkin(connection) if connection
141
141
  end
142
142
  end
143
143
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gene_pool
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brad Pardee
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-12-05 00:00:00.000000000 Z
11
+ date: 2014-01-06 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Generic pooling library for creating a connection pool
14
14
  email: