backupgem 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/CHANGELOG CHANGED
@@ -1,5 +1,9 @@
1
1
  = Backup Changelog
2
2
 
3
+ == Version 0.0.6
4
+ * Added a default port
5
+ * Fixed an s3 'require' typo
6
+
3
7
  == Version 0.0.5
4
8
  * Added Amazon s3 support. Thanks to Jason Perry for this patch.
5
9
  * Added an option for ssh port. Thanks to Frank Oxener for this patch.
@@ -14,6 +14,9 @@ set :action_order, %w{ content compress encrypt deliver rotate cleanup }
14
14
  # Name of the SSH user
15
15
  set :ssh_user, ENV['USER']
16
16
 
17
+ # default port
18
+ set :port, 21 # todo, change to ssh_port
19
+
17
20
  # Path to your SSH key
18
21
  set :identity_key, ENV['HOME'] + "/.ssh/id_rsa"
19
22
 
@@ -1,4 +1,4 @@
1
- require 'YAML'
1
+ require 'yaml'
2
2
 
3
3
  module Backup
4
4
  class S3Actor
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.0
3
3
  specification_version: 1
4
4
  name: backupgem
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.0.5
7
- date: 2007-01-26 00:00:00 -08:00
6
+ version: 0.0.6
7
+ date: 2007-01-29 00:00:00 -08:00
8
8
  summary: Beginning-to-end solution for backups and rotation.
9
9
  require_paths:
10
10
  - lib