forked from alexkravets/heroku-mongo-backup
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheroku-mongo-backup.gemspec
More file actions
20 lines (16 loc) · 892 Bytes
/
heroku-mongo-backup.gemspec
File metadata and controls
20 lines (16 loc) · 892 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Gem::Specification.new do |s|
s.name = 'heroku-mongo-backup'
s.version = '0.4.2'
s.summary = 'Rake task backups mongo database on Heroku and push gzipped file to Amazon S3 or FTP.'
s.description = 'Rake task for backing up mongo database on heroku and push it to S3 or FTP. Library can be used as rake task or be easily integrated into daily cron job.'
s.authors = ['Alex Kravets', 'matyi', 'Stef Lewandowski', 'David Hall', 'Dan Porter']
s.email = 'santyor@gmail.com'
s.homepage = 'https://github.com/alexkravets/heroku-mongo-backup'
s.require_paths = ["lib"]
s.files = `git ls-files`.split($\)
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
# Supress the warning about no rubyforge project
s.rubyforge_project = 'nowarning'
s.add_runtime_dependency 'mongo'
end