public
Description: Blanket is a flexible backup framework designed to get the drudgery out of the way and to make automated backups easy.
Homepage: http://jimvanfleet.com/projects/blanket
Clone URL: git://github.com/bigfleet/blanket.git
Search Repo:
blanket / blanket.gemspec
100644 54 lines (51 sloc) 2.279 kb
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
Gem::Specification.new do |s|
  s.name = %q{blanket}
  s.version = "0.1.1"
 
  s.specification_version = 2 if s.respond_to? :specification_version=
 
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Jim Van Fleet"]
  s.date = %q{2008-04-21}
  s.email = %q{jim@jimvanfleet.com}
  s.executables = ["blanket", "blanket-cfg"]
  s.files = ["bin/blanket",
             "bin/blanket-cfg",
             "lib/blanket/config",
             "lib/blanket/config/reader.rb",
             "lib/blanket/config/writer.rb",
             "lib/blanket/init.rb",
             "lib/blanket/sink.rb",
             "lib/blanket/source.rb",
             "lib/blanket/utils.rb",
             "lib/capistrano/recipes",
             "lib/capistrano/recipes/blanket.rb",
             "lib/capistrano/recipes/s3.rb",
             "lib/capistrano/recipes/sftp.rb",
             "lib/blanket/plugins/sources",
             "lib/blanket/plugins/sources/confluence.rb",
             "lib/blanket/plugins/sources/mysql.rb",
             "lib/blanket/plugins/sources/subversion.rb",
             "lib/blanket/plugins/sources/single_file.rb",
             "lib/blanket/plugins/sources/remote_directory.rb",
             "lib/blanket/plugins/sources/postgresql.rb",
             "lib/blanket/plugins/sinks/s3.rb",
             "lib/blanket/plugins/sinks/scp.rb",
             "lib/blanket/plugins/sinks/sftp.rb",
             "spec/fixtures",
             "spec/confluence_spec.rb",
             "spec/dependency_spec.rb",
             "spec/fixtures/confluence.yml",
             "spec/fixtures/s3-info.yml",
             "spec/reader_spec.rb",
             "spec/s3_spec.rb",
             "spec/spec_helper.rb",
             "spec/writer_spec.rb",
             "README",
             "MIT-LICENSE"]
  s.has_rdoc = true
  s.require_paths = ["lib"]
  s.rubygems_version = %q{1.0.1}
  s.summary = %q{Blanket is a flexible backup framework designed to get the drudgery out of the way and to make automated backups easy.}
  s.homepage = %q{http://www.jimvanfleet.com/projects/blanket}
 
  s.add_dependency(%q<capistrano>, [">= 2.0.0", "< 2.99.0"])
  s.add_dependency(%q<aws-s3>, [">= 0.4.0", "< 1.0"])
end