-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpgdice.gemspec
47 lines (41 loc) · 2.24 KB
/
pgdice.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'pgdice/version'
Gem::Specification.new do |spec|
spec.name = 'pgdice'
spec.version = PgDice::VERSION
spec.authors = ['Andrew Newell']
spec.email = ['andrew@illuminusltd.com']
spec.summary = 'Postgres table partitioning with a Ruby API!'
spec.description = 'Postgres table partitioning with a Ruby API built on top of https://github.com/ankane/pgslice'
spec.homepage = 'https://github.com/IlluminusLimited/pgdice'
spec.license = 'MIT'
# Specify which files should be added to the gem when it is released.
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
spec.files = Dir.chdir(File.expand_path(__dir__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
end
spec.bindir = 'exe'
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 3.0.0'
# It looks like there's a bug in pg 1.3+ that I don't have time to fix
spec.add_runtime_dependency 'pg', '~> 1.2.3', '>= 1.1.0'
# Locked because we depend on internal behavior for table commenting
spec.add_runtime_dependency 'pgslice', '0.4.7'
spec.add_development_dependency 'bundler', '~> 2.3.6', '>= 1.16'
spec.add_development_dependency 'guard', '~> 2.18.0', '>= 2.14.2'
spec.add_development_dependency 'guard-minitest', '~> 2.4.6', '>= 2.4.6'
spec.add_development_dependency 'guard-rubocop', '~> 1.5.0', '>= 1.3.0'
spec.add_development_dependency 'guard-shell', '~> 0.7.1', '>= 0.7.1'
spec.add_development_dependency 'minitest', '~> 5.0', '>= 5.0'
spec.add_development_dependency 'minitest-ci', '~> 3.4.0', '>= 3.4.0'
spec.add_development_dependency 'minitest-reporters', '~> 1.5.0', '>= 1.3.4'
spec.add_development_dependency 'rake', '~> 13.0.6', '>= 10.0'
spec.add_development_dependency 'rubocop', '1.25.1'
spec.add_development_dependency 'rubocop-performance', '~> 1.13.2', '>= 1.13.2'
spec.add_development_dependency 'rubocop-rake', '~> 0.6.0', '>= 0.6.0'
spec.add_development_dependency 'simplecov', '~> 0.21.2', '>= 0.16.1'
spec.metadata['rubygems_mfa_required'] = 'true'
end