-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdreamback.gemspec
24 lines (20 loc) · 1.04 KB
/
dreamback.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/dreamback/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Paul R Alexander"]
gem.email = ["[email protected]"]
gem.description = %q{The easiest, cheapest way to back up your dreamhost accounts}
gem.summary = %q{Dreamback is the easiest way to automate your backups on dreamhost. Dreamhost does not guarantee their backups of your users (though they've saved me with backups before), so it's best to run backups yourself.}
gem.homepage = "https://github.com/palexander/dreamback"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "dreamback"
gem.require_paths = ["lib"]
gem.version = Dreamback::VERSION
gem.add_dependency("json")
gem.add_dependency("net-sftp")
gem.add_dependency("cronedit")
gem.add_dependency("commander")
gem.executables = %w(dreamback)
end