Skip to content

Commit

Permalink
Bump connection_pool dep to ~> 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pointlessone committed Jul 20, 2012
1 parent 5f24164 commit 149b45e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion girl_friday.gemspec
Expand Up @@ -16,7 +16,7 @@ Gem::Specification.new do |s|
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_dependency 'connection_pool', '~> 0.1.0'
s.add_dependency 'connection_pool', '~> 0.9.0'
s.add_development_dependency 'sinatra', '~> 1.3'
s.add_development_dependency 'rake'
end
2 changes: 1 addition & 1 deletion test/test_girl_friday_queue.rb
Expand Up @@ -125,7 +125,7 @@ def test_should_persist_with_redis_connection_pool
require 'redis'
require 'connection_pool'
pool = ConnectionPool.new(:size => 5, :timeout => 2){ Redis.new }
pool.flushdb
pool.with_connection {|redis| redis.flushdb }
rescue LoadError
return puts "Skipping redis test, 'redis' gem not found: #{$!.message}"
rescue Errno::ECONNREFUSED
Expand Down

0 comments on commit 149b45e

Please sign in to comment.