-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpgb.gemspec
32 lines (26 loc) · 1.03 KB
/
pgb.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
# frozen_string_literal: true
require_relative 'lib/pgb/version'
Gem::Specification.new do |spec|
spec.name = 'pgb'
spec.version = PGB::VERSION
spec.authors = ['Dmitry Gubitskiy']
spec.email = ['[email protected]']
spec.summary = 'Postgres-specific ORM for Ruby'
spec.homepage = 'https://github.com/enthrops/pgb'
spec.license = 'MIT'
spec.required_ruby_version = '>= 2.7', '< 3.2'
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/enthrops/pgb'
spec.metadata['changelog_uri'] = 'https://github.com/enthrops/pgb/blob/master/CHANGELOG.md'
spec.metadata['rubygems_mfa_required'] = 'true'
spec.files = Dir.chdir(__dir__) do
`git ls-files -z`.split("\x0").reject do |f|
regexp = %r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)}
(f == __FILE__) || f.match(regexp)
end
end
spec.require_paths = ['lib']
spec.add_dependency 'colorize', '= 0.8.1'
spec.add_dependency 'pg', '~> 1.4'
spec.add_dependency 'zeitwerk', '~> 2.6'
end