backup 4.1.8 → 4.1.9
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.
- checksums.yaml +4 -4
- data/README.md +6 -6
- data/lib/backup/encryptor/open_ssl.rb +7 -2
- data/lib/backup/notifier/mail.rb +1 -1
- data/lib/backup/version.rb +1 -1
- data/templates/cli/config +2 -2
- data/templates/cli/model +1 -1
- data/templates/general/links +3 -3
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 79dd939e8ba4260b64110e7ad7ac66d6e6e12d7d
|
|
4
|
+
data.tar.gz: 779c69b666008f7a7ebf112fa09863aa629e6259
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 83ed340b4f8ad8c7c3012b6fadfa2dd8138503f2feacdd3c1f3b6c2f467db9b9ade513f5ecb44f3735f00c92e5d999234893bf134897f9ea63d74d0056ad405b
|
|
7
|
+
data.tar.gz: 2abeff5f9ed202285639c67cbe2bbddb73eadb6cf0bd7bc9f11b4ad08b9a09b18e5f87938a76404a6050942e4b44057fd4402908c3eea84eaee88d74973dc741
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Backup v4.x
|
|
2
2
|
===========
|
|
3
|
-
[](https://codeclimate.com/github/backup/backup)
|
|
4
|
+
[](https://travis-ci.org/backup/backup)
|
|
5
5
|
|
|
6
6
|
Backup is a system utility for Linux and Mac OS X, distributed as a RubyGem, that allows you to easily perform backup
|
|
7
7
|
operations. It provides an elegant DSL in Ruby for _modeling_ your backups. Backup has built-in support for various
|
|
@@ -16,10 +16,10 @@ Only use the Backup gem [issue tracker][Issues] for bugs and other issues.
|
|
|
16
16
|
**Copyright (c) 2009-2015 [Michael van Rooijen][] ( [@meskyanichi][] )**
|
|
17
17
|
Released under the **MIT** [License](LICENSE.md).
|
|
18
18
|
|
|
19
|
-
[Installation]: http://
|
|
20
|
-
[Release Notes]: http://
|
|
21
|
-
[Documentation]: http://
|
|
22
|
-
[Issues]: https://github.com/
|
|
19
|
+
[Installation]: http://backup.github.io/backup/v4/installation
|
|
20
|
+
[Release Notes]: http://backup.github.io/backup/v4/release-notes
|
|
21
|
+
[Documentation]: http://backup.github.io/backup/v4
|
|
22
|
+
[Issues]: https://github.com/backup/backup/issues
|
|
23
23
|
[Features]: https://github.com/meskyanichi/backup-features/issues
|
|
24
24
|
[Michael van Rooijen]: http://michaelvanrooijen.com
|
|
25
25
|
[@meskyanichi]: http://twitter.com/#!/meskyanichi
|
|
@@ -62,8 +62,13 @@ module Backup
|
|
|
62
62
|
opts = ['aes-256-cbc']
|
|
63
63
|
opts << '-base64' if @base64
|
|
64
64
|
opts << '-salt' if @salt
|
|
65
|
-
|
|
66
|
-
|
|
65
|
+
|
|
66
|
+
if @password_file.to_s.empty?
|
|
67
|
+
opts << "-k #{Shellwords.escape(@password)}"
|
|
68
|
+
else
|
|
69
|
+
opts << "-pass file:#{@password_file}"
|
|
70
|
+
end
|
|
71
|
+
|
|
67
72
|
opts.join(' ')
|
|
68
73
|
end
|
|
69
74
|
|
data/lib/backup/notifier/mail.rb
CHANGED
data/lib/backup/version.rb
CHANGED
data/templates/cli/config
CHANGED
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
##
|
|
4
4
|
# Backup v<%= Backup::VERSION.split('.').first %>.x Configuration
|
|
5
5
|
#
|
|
6
|
-
# Documentation: http://
|
|
7
|
-
# Issue Tracker: https://github.com/
|
|
6
|
+
# Documentation: http://backup.github.io/backup
|
|
7
|
+
# Issue Tracker: https://github.com/backup/backup/issues
|
|
8
8
|
|
|
9
9
|
##
|
|
10
10
|
# Config Options
|
data/templates/cli/model
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
# $ backup perform -t <%= @options[:trigger] %> [-c <path_to_configuration_file>]
|
|
8
8
|
#
|
|
9
9
|
# For more information about Backup's components, see the documentation at:
|
|
10
|
-
# http://
|
|
10
|
+
# http://backup.github.io/backup
|
|
11
11
|
#
|
|
12
12
|
Model.new(:<%= @options[:trigger] %>, 'Description for <%= @options[:trigger] %>') do
|
|
13
13
|
<% if @options[:splitter] %>
|
data/templates/general/links
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
Project Home: https://github.com/
|
|
2
|
-
Documentation: http://
|
|
3
|
-
Issue Tracker: https://github.com/
|
|
1
|
+
Project Home: https://github.com/backup/backup
|
|
2
|
+
Documentation: http://backup.github.io/backup
|
|
3
|
+
Issue Tracker: https://github.com/backup/backup/issues
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: backup
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.1.
|
|
4
|
+
version: 4.1.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael van Rooijen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-04-13 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: CFPropertyList
|
|
@@ -1020,7 +1020,7 @@ files:
|
|
|
1020
1020
|
- templates/storage/dropbox/authorization_url.erb
|
|
1021
1021
|
- templates/storage/dropbox/authorized.erb
|
|
1022
1022
|
- templates/storage/dropbox/cache_file_written.erb
|
|
1023
|
-
homepage: https://github.com/
|
|
1023
|
+
homepage: https://github.com/backup/backup
|
|
1024
1024
|
licenses:
|
|
1025
1025
|
- MIT
|
|
1026
1026
|
metadata: {}
|
|
@@ -1029,10 +1029,10 @@ post_install_message: |2+
|
|
|
1029
1029
|
Thank you for installing Backup!
|
|
1030
1030
|
|
|
1031
1031
|
See the Release Notes for changes in this version:
|
|
1032
|
-
http://
|
|
1032
|
+
http://backup.github.io/backup/v4/release-notes
|
|
1033
1033
|
|
|
1034
1034
|
If you're upgrading from v3.x, be sure to read:
|
|
1035
|
-
http://
|
|
1035
|
+
http://backup.github.io/backup/v4/upgrading
|
|
1036
1036
|
|
|
1037
1037
|
rdoc_options: []
|
|
1038
1038
|
require_paths:
|