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

21 lines
810 B
Ruby
Raw Normal View History

# -*- encoding: utf-8 -*-
require "./lib/connection_pool/version"
Gem::Specification.new do |s|
s.name = "connection_pool"
s.version = ConnectionPool::VERSION
s.platform = Gem::Platform::RUBY
2013-08-14 23:26:18 -04:00
s.authors = ["Mike Perham", "Damian Janowski"]
s.email = ["mperham@gmail.com", "damian@educabilia.com"]
2012-10-08 16:28:24 -04:00
s.homepage = "https://github.com/mperham/connection_pool"
s.description = s.summary = %q{Generic connection pool for Ruby}
s.files = `git ls-files`.split("\n")
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.license = "MIT"
2013-05-29 11:48:27 -04:00
s.add_development_dependency 'minitest', '>= 5.0.0'
2013-08-14 22:33:55 -04:00
s.add_development_dependency 'rake'
end