Skip to content

Commit

Permalink
Finalizing RDoc and releasing 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bigfleet committed Apr 22, 2008
1 parent ed67648 commit d170739
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 7 deletions.
8 changes: 4 additions & 4 deletions blanket.gemspec
@@ -1,12 +1,12 @@
Gem::Specification.new do |s|
s.name = %q{blanket}
s.version = "0.1.0"
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-03-02}
s.date = %q{2008-04-21}
s.email = %q{jim@jimvanfleet.com}
s.executables = ["blanket", "blanket-cfg"]
s.files = ["bin/blanket",
Expand Down Expand Up @@ -43,12 +43,12 @@ Gem::Specification.new do |s|
"spec/writer_spec.rb",
"README",
"MIT-LICENSE"]
s.has_rdoc = false
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
end
6 changes: 5 additions & 1 deletion lib/blanket.rb
Expand Up @@ -26,6 +26,10 @@
end
end

# This is RDoc for Blanket
# Blanket: For making backup easier
#
# See a Blanket introduction[http://github.com/bigfleet/blanket/wikis] or
# a walkthrough[http://github.com/bigfleet/blanket/wikis/quickstart] of
# setting up your first blanket.
module Blanket
end
7 changes: 7 additions & 0 deletions lib/blanket/plugins/sources/confluence.rb
Expand Up @@ -3,6 +3,13 @@
# A Source that's aware of the Confluence wiki's particular strategy towards
# backups. Confluence makes its own when you ask it to, so this takes care
# of uploading them to an off-site location.
#
# [user] Username on the remote system.
# [password] Password on the remote system.
# [host] Domain name of the remote system.
# [remote_directory] The backup directory for Confluence on the remote server.
# [local_directory] The location on client running the blanket where the database backup is stored before being sent to a sink.

class Confluence < Source

def initialize(reader) #:nodoc:
Expand Down
6 changes: 4 additions & 2 deletions lib/blanket/plugins/sources/single_file.rb
Expand Up @@ -10,10 +10,12 @@
# [host] Domain name of the remote system.
# [remote_path] The location on the remote server you'd like to blanket.
# [local_path] The location on client running the blanket where the database backup is stored before being sent to a sink.
#
# http://bigfleet.lighthouseapp.com/projects/8764-blanket/tickets/13-document-overwriting-single-file

class SingleFile < Source

# One additional TODO
# http://bigfleet.lighthouseapp.com/projects/8764-blanket/tickets/13-document-overwriting-single-file


def initialize(reader) #:nodoc:
@reader = reader
Expand Down

0 comments on commit d170739

Please sign in to comment.