1
0
Fork 0
mirror of https://github.com/mperham/connection_pool synced 2023-03-27 23:22:21 -04:00

Move timed_queue, prepare for release

This commit is contained in:
Mike Perham 2011-09-19 14:29:59 -07:00
parent f4aef6acc0
commit 751be41b6b
4 changed files with 4 additions and 4 deletions

View file

@ -1,5 +1,5 @@
HEAD
0.1.0
--------
- More precise timeouts
- More precise timeouts and better error message
- ConnectionPool now subclasses BasicObject so `method_missing` is more effective.

View file

@ -1,4 +1,4 @@
require 'connection_pool/timed_queue'
require 'timed_queue'
# Generic connection pool class for e.g. sharing a limited number of network connections
# among many threads. Note: Connections are eager created.

View file

@ -1,3 +1,3 @@
class ConnectionPool
VERSION = "0.0.3"
VERSION = "0.1.0"
end