-
Notifications
You must be signed in to change notification settings - Fork 4
/
drebs.gemspec
59 lines (45 loc) · 1.18 KB
/
drebs.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
## drebs.gemspec
#
Gem::Specification::new do |spec|
spec.name = "drebs"
spec.version = "0.1.2"
spec.platform = Gem::Platform::RUBY
spec.summary = "drebs"
spec.description = "drebs: Disaster Recovery for Elastic Block Store. An AWS EBS backup script."
spec.files =
["README.md",
"Rakefile",
"bin",
"bin/drebs",
"config",
"config/example.yml",
"drebs.gemspec",
"lib",
"lib/drebs",
"lib/drebs.rb",
"lib/drebs/cloud.rb",
"lib/drebs/main.rb",
"test",
"test/helper.rb",
"test/unit",
"test/unit/drebs",
"test/unit/drebs/drebs_test.rb",
"test/unit/drebs/main_test.rb",
"tmp_test_data",
"tmp_test_data/db.sqlite"]
spec.executables = ["drebs"]
spec.require_path = "lib"
spec.test_files = nil
spec.add_dependency(*["right_aws", ">= 3.1.0"])
spec.add_dependency(*["logger", ">= 1.2.8"])
spec.add_dependency(*["main", ">= 5.2.0"])
spec.add_dependency(*["systemu", ">= 2.4.2"])
spec.add_dependency(*["json", ">= 1.5.1"])
spec.add_dependency(*["pry", ">= 0.9.12.6"])
spec.extensions.push(*[])
spec.rubyforge_project = "DREBS"
spec.authors = ["Garett Shulman", "Miles Matthias"]
spec.email = "[email protected]"
spec.homepage = "https://github.com/dojo4/drebs"
spec.licenses = "Apache-2.0"
end