forked from mattfawcett/safe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
astrails-safe.gemspec
115 lines (111 loc) · 4.08 KB
/
astrails-safe.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{astrails-safe}
s.version = "0.2.7"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Astrails Ltd."]
s.date = %q{2010-02-17}
s.default_executable = %q{astrails-safe}
s.description = %q{Astrails-Safe is a simple tool to backup databases (MySQL and PostgreSQL), Subversion repositories (with svndump) and just files.
Backups can be stored locally or remotely and can be enctypted.
Remote storage is supported on Amazon S3, Rackspace Cloud Files, or just plain SFTP.
}
s.email = %q{[email protected]}
s.executables = ["astrails-safe"]
s.extra_rdoc_files = [
"LICENSE",
"README.markdown"
]
s.files = [
"LICENSE",
"README.markdown",
"Rakefile",
"bin/astrails-safe",
"examples/example_helper.rb",
"lib/astrails/safe.rb",
"lib/astrails/safe/archive.rb",
"lib/astrails/safe/backup.rb",
"lib/astrails/safe/cloudfiles.rb",
"lib/astrails/safe/config/builder.rb",
"lib/astrails/safe/config/node.rb",
"lib/astrails/safe/gpg.rb",
"lib/astrails/safe/gzip.rb",
"lib/astrails/safe/local.rb",
"lib/astrails/safe/mysqldump.rb",
"lib/astrails/safe/pgdump.rb",
"lib/astrails/safe/pipe.rb",
"lib/astrails/safe/s3.rb",
"lib/astrails/safe/sftp.rb",
"lib/astrails/safe/sink.rb",
"lib/astrails/safe/source.rb",
"lib/astrails/safe/stream.rb",
"lib/astrails/safe/svndump.rb",
"lib/astrails/safe/tmp_file.rb",
"lib/extensions/mktmpdir.rb",
"spec/integration/archive_integration_spec.rb",
"spec/integration/cleanup_spec.rb",
"spec/spec.opts",
"spec/spec_helper.rb",
"spec/unit/archive_spec.rb",
"spec/unit/cloudfiles_spec.rb",
"spec/unit/config_spec.rb",
"spec/unit/gpg_spec.rb",
"spec/unit/gzip_spec.rb",
"spec/unit/local_spec.rb",
"spec/unit/mysqldump_spec.rb",
"spec/unit/pgdump_spec.rb",
"spec/unit/s3_spec.rb",
"spec/unit/svndump_spec.rb",
"templates/script.rb"
]
s.homepage = %q{http://blog.astrails.com/astrails-safe}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{Backup filesystem and databases (MySQL and PostgreSQL) locally or to a remote server/service (with encryption)}
s.test_files = [
"spec/integration/archive_integration_spec.rb",
"spec/integration/cleanup_spec.rb",
"spec/spec_helper.rb",
"spec/unit/archive_spec.rb",
"spec/unit/cloudfiles_spec.rb",
"spec/unit/config_spec.rb",
"spec/unit/gpg_spec.rb",
"spec/unit/gzip_spec.rb",
"spec/unit/local_spec.rb",
"spec/unit/mysqldump_spec.rb",
"spec/unit/pgdump_spec.rb",
"spec/unit/s3_spec.rb",
"spec/unit/svndump_spec.rb",
"examples/example_helper.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<aws-s3>, [">= 0"])
s.add_runtime_dependency(%q<cloudfiles>, [">= 0"])
s.add_runtime_dependency(%q<net-sftp>, [">= 0"])
s.add_runtime_dependency(%q<mime-types>, ["= 2.6.2"])
s.add_runtime_dependency(%q<net-ssh>, ["= 2.6.5"])
s.add_development_dependency(%q<rspec>, [">= 0"])
else
s.add_dependency(%q<aws-s3>, [">= 0"])
s.add_dependency(%q<cloudfiles>, [">= 0"])
s.add_dependency(%q<net-sftp>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<mime-types>, ["= 2.6.2"])
s.add_dependency(%q<net-ssh>, ["= 2.6.5"])
end
else
s.add_dependency(%q<aws-s3>, [">= 0"])
s.add_dependency(%q<cloudfiles>, [">= 0"])
s.add_dependency(%q<net-sftp>, [">= 0"])
s.add_dependency(%q<rspec>, [">= 0"])
s.add_dependency(%q<mime-types>, ["= 2.6.2"])
s.add_dependency(%q<net-ssh>, ["= 2.6.5"])
end
end