class Bundler::ConnectionPool::TimedStack

def try_create(options = nil)

def try_create(options = nil)
  unless @created == @max
    object = @create_block.call
    @created += 1
    object
  end
end