backup 4.1.11 → 4.1.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 090ea9bc099efe67691fd99049e41b6d8d2ea39f
4
- data.tar.gz: d80d17b22d496fc82c0428267245f4bf76b23f43
3
+ metadata.gz: 05a10c86b1bc49eee3b2e65770817d4c5d19aa32
4
+ data.tar.gz: 4c4118f48da862a40ccfc92de56014a589490fbd
5
5
  SHA512:
6
- metadata.gz: fd79088bb12aaf37821f6732240ce9f002acf5b85b4bbc4f7788d6aae6dd7930080215f21f2a2ac20e0ad162e06829fe99db984192a69ab05ec5c8a920feb599
7
- data.tar.gz: f55230f51475db510b0218c8b059cf9d818f112b7d26d3fc8a1213f1835e6ad7694f641dc221edf321fb92f5d9ff2b018901ed544e0a33a7bec117d62583596d
6
+ metadata.gz: 5d2a68639830362e7250a83f76553c62b08a0511cee9ba105c0b699529edd344a4a2788f525653a377d4b9e114071b88125a7ca736217c1a85fea985465f2865
7
+ data.tar.gz: 50f8c2d48d66f84f6190cbe1d6497c6b37f44f44357931458b673f5d40dca58dbc165d6c1cbc77e6e27341a9e48237f658748b0842c49616d1715a5955f9b851
data/README.md CHANGED
@@ -3,17 +3,18 @@ Backup v4.x
3
3
 
4
4
  [![Code Climate](https://codeclimate.com/github/backup/backup.png)](https://codeclimate.com/github/backup/backup)
5
5
  [![Build Status](https://travis-ci.org/backup/backup.svg?branch=master)](https://travis-ci.org/backup/backup)
6
- [![Join the chat at https://gitter.im/backup/backup](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/backup/backup?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
6
+ [![Join the chat at https://gitter.im/backup/backup](https://badges.gitter.im/Join%20Chat.svg)][Gitter]
7
7
 
8
8
  Backup is a system utility for Linux and Mac OS X, distributed as a RubyGem, that allows you to easily perform backup
9
9
  operations. It provides an elegant DSL in Ruby for _modeling_ your backups. Backup has built-in support for various
10
10
  databases, storage protocols/services, syncers, compressors, encryptors and notifiers which you can mix and match. It
11
11
  was built with modularity, extensibility and simplicity in mind.
12
12
 
13
- [Installation][] · [Release Notes][] · [Documentation][] · [Issues][] · [Features][]
13
+ [Installation][] · [Release Notes][] · [Documentation][] · [Issues][] · [Features][] · [Chat][Gitter]
14
14
 
15
15
  Please use the Backup features [issue tracker][Features] to suggest new features.
16
16
  Only use the Backup gem [issue tracker][Issues] for bugs and other issues.
17
+ We're also available on [Gitter][] for questions and problems.
17
18
 
18
19
  **Copyright (c) 2009-2015 [Michael van Rooijen][] ( [@meskyanichi][] )**
19
20
  Released under the **MIT** [License](LICENSE.md).
@@ -23,5 +24,6 @@ Released under the **MIT** [License](LICENSE.md).
23
24
  [Documentation]: http://backup.github.io/backup/v4
24
25
  [Issues]: https://github.com/backup/backup/issues
25
26
  [Features]: https://github.com/backup/backup-features/issues
27
+ [Gitter]: https://gitter.im/backup/backup?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
26
28
  [Michael van Rooijen]: http://michaelvanrooijen.com
27
29
  [@meskyanichi]: http://twitter.com/#!/meskyanichi
@@ -101,8 +101,8 @@ module Backup
101
101
  private
102
102
 
103
103
  def mysqldump
104
- "#{ utility(:mysqldump) } #{ credential_options } " +
105
- "#{ connectivity_options } #{ user_options } #{ name_option } " +
104
+ "#{ utility(:mysqldump) } #{ user_options } #{ credential_options } " +
105
+ "#{ connectivity_options } #{ name_option } " +
106
106
  "#{ tables_to_dump } #{ tables_to_skip }"
107
107
  end
108
108
 
@@ -1,5 +1,5 @@
1
1
  # encoding: utf-8
2
2
 
3
3
  module Backup
4
- VERSION = '4.1.11'
4
+ VERSION = '4.1.12'
5
5
  end
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.11
4
+ version: 4.1.12
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-07-22 00:00:00.000000000 Z
11
+ date: 2015-09-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: CFPropertyList
@@ -1042,7 +1042,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1042
1042
  version: '0'
1043
1043
  requirements: []
1044
1044
  rubyforge_project:
1045
- rubygems_version: 2.4.6
1045
+ rubygems_version: 2.4.5.1
1046
1046
  signing_key:
1047
1047
  specification_version: 4
1048
1048
  summary: Provides an elegant DSL in Ruby for performing backups on UNIX-like systems.