-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathops_backups.gemspec
28 lines (23 loc) · 1.28 KB
/
ops_backups.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
require_relative "lib/ops_backups/version"
Gem::Specification.new do |spec|
spec.name = "ops_backups"
spec.version = OpsBackups::VERSION
spec.authors = [ "Koen Handekyn" ]
spec.email = [ "[email protected]" ]
spec.homepage = "https://github.com/koenhandekyn/ops_backups"
spec.summary = "A Ruby gem for managing PostgreSQL backups."
spec.description = "This gem provides functionality to backup PostgreSQL databases to ActiveStorage (S3) from within a Rails context."
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0.0"
spec.executables = [ 'pgdb' ]
# # Prevent pushing this gem to RubyGems.org. To allow pushes either set the "allowed_push_host"
# # to allow pushing to a single host or delete this section to allow pushing to any host.
# spec.metadata["allowed_push_host"] = "TODO"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/koenhandekyn/ops_backups/tree/main"
spec.metadata["changelog_uri"] = "https://github.com/koenhandekyn/ops_backups/blob/main/CHANGELOG.md"
spec.files = Dir.chdir(File.expand_path(__dir__)) do
Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.md", "bin/pgdb", "bin/pgdb.sh"]
end
spec.add_dependency "rails", ">= 6"
end