-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathactiverecord-bogacs.gemspec
28 lines (22 loc) · 1.16 KB
/
activerecord-bogacs.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# coding: utf-8
Gem::Specification.new do |gem|
gem.name = 'activerecord-bogacs'
path = File.expand_path('lib/active_record/bogacs/version.rb', File.dirname(__FILE__))
gem.version = File.read(path).match( /.*VERSION\s*=\s*['"](.*)['"]/m )[1]
gem.authors = ['Karol Bucek']
gem.email = ['[email protected]']
gem.description = %q{Improved ActiveRecord::ConnectionAdapters::ConnectionPool alternatives}
gem.summary = 'Bogacs contains several pool implementations that can be used as a replacement ' +
"for ActiveRecord's built-in pool, e.g. DefaultPool is an upstream tuned version with an API " +
'that is compatible with older AR versions.'
gem.homepage = "http://github.com/kares/activerecord-bogacs"
gem.licenses = ['MIT']
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}) { |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^test/})
gem.require_paths = ["lib"]
gem.add_dependency 'activerecord', '< 6' # '>= 4.0' # depends on: concurrent-ruby ~> 1.0, >= 1.0.2
gem.add_dependency 'concurrent-ruby', '~> 1.0'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'test-unit', '~> 2.5'
end