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
Adding RemoteDirectory source, moving generic remote to SingleFile
bigfleet (author)
Mon Mar 03 19:55:02 -0800 2008
commit  9ce51ee24cceaaa965e675d7b2deb4dca202fc1f
tree    8ef2835b7d2d4bf141376f48441c7b0100a9fd55
parent  d4e20ec7c0d343066f5d65d2af5965f38e896c56
...
9
10
11
12
 
13
14
15
...
9
10
11
 
12
13
14
15
0
@@ -9,7 +9,7 @@ Gem::Specification.new do |s|
0
   s.date = %q{2008-03-02}
0
   s.email = %q{jim@jimvanfleet.com}
0
   s.executables = ["blanket", "blanket-cfg"]
0
- 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/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/generic-remote.rb", "lib/blanket/plugins/sinks/s3.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"]
0
+ 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/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/sinks/s3.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"]
0
   s.has_rdoc = false
0
   s.require_paths = ["lib"]
0
   s.rubygems_version = %q{1.0.1}
...
18
19
20
21
 
 
22
...
18
19
20
 
21
22
23
0
@@ -18,5 +18,6 @@ require File.dirname(__FILE__) + "/source.rb"
0
 require File.dirname(__FILE__) + "/plugins/sources/confluence.rb"
0
 require File.dirname(__FILE__) + "/plugins/sources/mysql.rb"
0
 require File.dirname(__FILE__) + "/plugins/sources/subversion.rb"
0
-require File.dirname(__FILE__) + "/plugins/sources/generic-remote.rb"
0
+require File.dirname(__FILE__) + "/plugins/sources/single_file.rb"
0
+require File.dirname(__FILE__) + "/plugins/sources/remote_directory.rb"
0
 require File.dirname(__FILE__) + "/plugins/sinks/s3.rb"

Comments

    No one has commented yet.