mysql_backups 1.1.0 → 1.1.2

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: f72b9907288779ccc6967863b280003c7d601cab
4
- data.tar.gz: 2a8e4aceb6e8306d4e22d6871a4ef2394ae20465
3
+ metadata.gz: 0948d5065961ad9258d7f281c3bf2d4f906a9c8c
4
+ data.tar.gz: 62660771160f12cb3639ce70f0611a7409ccb05c
5
5
  SHA512:
6
- metadata.gz: f2281afa736ea165d99c944817df145f2356021db2cc6646ab0912fabd5efee38b86a2ccacd9eaa467a9cb70204c342efed0250ba369a87a35797a747d824bfb
7
- data.tar.gz: 2028f5661337215a90488c697a2b6810ed6612fd63ed642b02e01a0661958b9a3bed436a9b3ca11b1112a8ab5b87ff93bc4b29b4f9eaf2b125f1dd0171939e7c
6
+ metadata.gz: 989d0ae50799e058b87a31dd1b6ab8711b57982c3a34885398c89c431fa2a645309f8e38d19169e9c552584939835b65e21431b628fe4da0d8b883b91a207307
7
+ data.tar.gz: 4c70af2a8fce90d25f23c481297fc6dc3487d2055a613484f4a622068be1e951bbc3978d934549f469d12f9cafcfc1ffca11fe86eed16e91bcdc7e95662170d9
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- mysql_backup (1.1.0)
4
+ mysql_backups (1.1.2)
5
5
  colorize
6
6
  trollop
7
7
 
@@ -17,8 +17,8 @@ PLATFORMS
17
17
 
18
18
  DEPENDENCIES
19
19
  bundler
20
- mysql_backup!
20
+ mysql_backups!
21
21
  rake (~> 10.0)
22
22
 
23
23
  BUNDLED WITH
24
- 1.13.6
24
+ 1.14.3
data/lib/mysql_backup.rb CHANGED
@@ -43,7 +43,7 @@ module MysqlBackup
43
43
  password = "-p#{@config.password}" if @config.password?
44
44
  options = '--skip-comments'
45
45
  tables = @config.tables.join ' '
46
- run! "mysqldump -u #{@config.username} #{password} --host=#{@config.server} #{options} #{@config.database} #{tables} | gzip > #{tmp_path}; exit ${PIPESTATUS[0]}"
46
+ run! "mysqldump -u #{@config.username} #{password} --host=#{@config.server} #{options} #{@config.database} #{tables} | gzip > #{tmp_path}"
47
47
  end
48
48
 
49
49
  def save(to_dir)
@@ -1,3 +1,3 @@
1
1
  module MysqlBackup
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mysql_backups
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Reed