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:
Finalizing RDoc and releasing 0.1.1
bigfleet (author)
Mon Apr 21 20:31:52 -0700 2008
commit  d170739dfe041124cb112daf3b297ac35bdbf191
tree    a7c2ae8f07cdb44ea8d8d8325b03bd0364cc84ed
parent  ed6764801d79a77744d03d34d4f3e86baa84f93a
...
1
2
3
 
4
5
6
7
8
9
 
10
11
12
...
43
44
45
46
 
47
48
49
...
1
2
 
3
4
5
6
7
8
 
9
10
11
12
...
43
44
45
 
46
47
48
49
0
@@ -1,12 +1,12 @@
0
 Gem::Specification.new do |s|
0
   s.name = %q{blanket}
0
- s.version = "0.1.0"
0
+ s.version = "0.1.1"
0
 
0
   s.specification_version = 2 if s.respond_to? :specification_version=
0
 
0
   s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
0
   s.authors = ["Jim Van Fleet"]
0
- s.date = %q{2008-03-02}
0
+ s.date = %q{2008-04-21}
0
   s.email = %q{jim@jimvanfleet.com}
0
   s.executables = ["blanket", "blanket-cfg"]
0
   s.files = ["bin/blanket",
0
@@ -43,7 +43,7 @@
0
              "spec/writer_spec.rb",
0
              "README",
0
              "MIT-LICENSE"]
0
- s.has_rdoc = false
0
+ s.has_rdoc = true
0
   s.require_paths = ["lib"]
0
   s.rubygems_version = %q{1.0.1}
0
   s.summary = %q{Blanket is a flexible backup framework designed to get the drudgery out of the way and to make automated backups easy.}
...
26
27
28
29
 
 
 
 
 
30
31
...
26
27
28
 
29
30
31
32
33
34
35
0
@@ -26,7 +26,11 @@
0
   end
0
 end
0
 
0
-# This is RDoc for Blanket
0
+# Blanket: For making backup easier
0
+#
0
+# See a Blanket introduction[http://github.com/bigfleet/blanket/wikis] or
0
+# a walkthrough[http://github.com/bigfleet/blanket/wikis/quickstart] of
0
+# setting up your first blanket.
0
 module Blanket
0
 end
...
3
4
5
 
 
 
 
 
 
 
6
7
8
...
3
4
5
6
7
8
9
10
11
12
13
14
15
0
@@ -3,6 +3,13 @@
0
 # A Source that's aware of the Confluence wiki's particular strategy towards
0
 # backups. Confluence makes its own when you ask it to, so this takes care
0
 # of uploading them to an off-site location.
0
+#
0
+# [user] Username on the remote system.
0
+# [password] Password on the remote system.
0
+# [host] Domain name of the remote system.
0
+# [remote_directory] The backup directory for Confluence on the remote server.
0
+# [local_directory] The location on client running the blanket where the database backup is stored before being sent to a sink.
0
+
0
 class Confluence < Source
0
   
0
   def initialize(reader) #:nodoc:
...
10
11
12
13
14
15
16
 
 
 
 
17
18
19
...
10
11
12
 
 
13
14
15
16
17
18
19
20
21
0
@@ -10,10 +10,12 @@
0
 # [host] Domain name of the remote system.
0
 # [remote_path] The location on the remote server you'd like to blanket.
0
 # [local_path] The location on client running the blanket where the database backup is stored before being sent to a sink.
0
-#
0
-# http://bigfleet.lighthouseapp.com/projects/8764-blanket/tickets/13-document-overwriting-single-file
0
 
0
 class SingleFile < Source
0
+
0
+ # One additional TODO
0
+ # http://bigfleet.lighthouseapp.com/projects/8764-blanket/tickets/13-document-overwriting-single-file
0
+
0
   
0
   def initialize(reader) #:nodoc:
0
     @reader = reader

Comments

    No one has commented yet.