forked from ankane/pgsync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpgsync.gemspec
More file actions
26 lines (20 loc) · 772 Bytes
/
pgsync.gemspec
File metadata and controls
26 lines (20 loc) · 772 Bytes
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
require_relative "lib/pgsync/version"
Gem::Specification.new do |spec|
spec.name = "pgsync"
spec.version = PgSync::VERSION
spec.summary = "Sync Postgres data between databases"
spec.homepage = "https://github.com/ankane/pgsync"
spec.license = "MIT"
spec.authors = "Andrew Kane"
spec.email = "andrew@ankane.org"
spec.files = Dir["*.{md,txt}", "{lib,exe}/**/*", "config.yml"]
spec.require_path = "lib"
spec.bindir = "exe"
spec.executables = ["pgsync"]
spec.required_ruby_version = ">= 2.7"
spec.add_dependency "bigdecimal"
spec.add_dependency "parallel"
spec.add_dependency "pg", ">= 0.18.2"
spec.add_dependency "slop", ">= 4.10.1"
spec.add_dependency "tty-spinner"
end