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

Merge pull request #6 from elabs/superclass-mismatch

Fix superclass mismatch for ConnectionPool in version.rb
This commit is contained in:
Mike Perham 2012-03-02 07:10:57 -08:00
commit 2eac7dcaa6
2 changed files with 2 additions and 1 deletions

View file

@ -1,3 +1,4 @@
require 'connection_pool/version'
require 'timed_queue'
# Generic connection pool class for e.g. sharing a limited number of network connections

View file

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