forked from arturcp/postgresql-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostgresql-backup.gemspec
23 lines (21 loc) · 1 KB
/
postgresql-backup.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Gem::Specification.new do |s|
s.name = 'postgresql-backup'
s.version = '0.0.8'
s.summary = "Automate PostgreSQL's backup and restore"
s.description = "This gem automates PostgreSQL's backup and restore in your Rails project. It will inject two rake tasks that you can use to manage your data, either by using the local system or AWS S3 storage."
s.authors = ["Artur Caliendo Prado"]
s.email = '[email protected]'
s.homepage = 'https://github.com/arturcp/postgresql-backup'
s.files = `git ls-files -- lib/*`.split("\n")
s.files += %w[README.md CHANGELOG.md]
s.license = 'MIT'
# Development dependencies
s.add_development_dependency 'bump', '~> 0.8.0'
s.add_development_dependency 'rspec', '~> 3.10.0'
s.add_development_dependency 'simplecov', '~> 0.21.2'
# Dependencies:
s.add_dependency 'fog-aws', '~> 3.13.0'
s.add_dependency 'pastel', '~> 0.8.0'
s.add_dependency 'tty-prompt', '~> 0.23.0'
s.add_dependency 'tty-spinner', '~> 0.9.3'
end