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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 004963823a262529edea603aac7e03984780fbb6
4
- data.tar.gz: 4db2e024de3f754ff369e465cc9e951ea7943e89
3
+ metadata.gz: 79dd939e8ba4260b64110e7ad7ac66d6e6e12d7d
4
+ data.tar.gz: 779c69b666008f7a7ebf112fa09863aa629e6259
5
5
  SHA512:
6
- metadata.gz: 8f24cb024863c13e60e0a5067de73f03df7e2ef5d9857d52ea171a283e27869bfdaeed0d0b6fad8b318aab0d3a1fccaac4e91339ec008f0bfbaf9063a151c94d
7
- data.tar.gz: 59c6444e5854b17339cd97bbbe97adb0a9c2d916e04da27c50477f09634fe8ef565888b1a574107e0a3afade3c725220190527fe8022ddb35c44a71b3d8cced3
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
- [![Code Climate](https://codeclimate.com/github/meskyanichi/backup.png)](https://codeclimate.com/github/meskyanichi/backup)
4
- [![Build Status](https://travis-ci.org/meskyanichi/backup.svg?branch=master)](https://travis-ci.org/meskyanichi/backup)
3
+ [![Code Climate](https://codeclimate.com/github/backup/backup.png)](https://codeclimate.com/github/backup/backup)
4
+ [![Build Status](https://travis-ci.org/backup/backup.svg?branch=master)](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://meskyanichi.github.io/backup/v4/installation
20
- [Release Notes]: http://meskyanichi.github.io/backup/v4/release-notes
21
- [Documentation]: http://meskyanichi.github.io/backup/v4
22
- [Issues]: https://github.com/meskyanichi/backup/issues
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
- opts << ( @password_file.to_s.empty? ?
66
- "-k '#{@password}'" : "-pass file:#{@password_file}" )
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
 
@@ -224,7 +224,7 @@ module Backup
224
224
  end
225
225
 
226
226
  # Patch mail v2.5.4 Exim delivery method
227
- # https://github.com/meskyanichi/backup/issues/446
227
+ # https://github.com/backup/backup/issues/446
228
228
  # https://github.com/mikel/mail/pull/546
229
229
  module Mail
230
230
  class Exim
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module Backup
4
- VERSION = '4.1.8'
4
+ VERSION = '4.1.9'
5
5
  end
@@ -3,8 +3,8 @@
3
3
  ##
4
4
  # Backup v<%= Backup::VERSION.split('.').first %>.x Configuration
5
5
  #
6
- # Documentation: http://meskyanichi.github.io/backup
7
- # Issue Tracker: https://github.com/meskyanichi/backup/issues
6
+ # Documentation: http://backup.github.io/backup
7
+ # Issue Tracker: https://github.com/backup/backup/issues
8
8
 
9
9
  ##
10
10
  # Config Options
@@ -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://meskyanichi.github.io/backup
10
+ # http://backup.github.io/backup
11
11
  #
12
12
  Model.new(:<%= @options[:trigger] %>, 'Description for <%= @options[:trigger] %>') do
13
13
  <% if @options[:splitter] %>
@@ -1,3 +1,3 @@
1
- Project Home: https://github.com/meskyanichi/backup
2
- Documentation: http://meskyanichi.github.io/backup
3
- Issue Tracker: https://github.com/meskyanichi/backup/issues
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.8
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-03-26 00:00:00.000000000 Z
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/meskyanichi/backup
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://meskyanichi.github.io/backup/v4/release-notes
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://meskyanichi.github.io/backup/v4/upgrading
1035
+ http://backup.github.io/backup/v4/upgrading
1036
1036
 
1037
1037
  rdoc_options: []
1038
1038
  require_paths: