backup-agent 1.0.6 → 1.0.7

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: 4579356f6302b40be3a519c32f70f2d983305c5f
4
- data.tar.gz: 516b995bbfee81941d5dfdc8f60289b5fab257ae
3
+ metadata.gz: db01b64b87205698b0d42f38377b53aba47b35b3
4
+ data.tar.gz: 18fc289eb9246b74f27812e5f6ad39dcd112c70d
5
5
  SHA512:
6
- metadata.gz: a4a0a137d12a368723f4a89b144f96d95c495e84aa972c665f237cd6801b55a553d07af85b248e132bb71136f4fec5dcce3defdb3bb4ca35dcfc7e22f7c1219d
7
- data.tar.gz: a993f1d5909d213adeea6e3b51f618449820a91dd589e87a1c6bd29a683be885c486352b04a7a6636c71251043754dbd9b8a3f71dc1409df145bf0c3f686fe6a
6
+ metadata.gz: 3ea0401050f5160ad6a540188b91bcda069d37252a67500dbf1b7f22f14712170bdba6b8f697eb6299f1c3b454bd7289cab6d4e041001eb4ee5de896295d5f58
7
+ data.tar.gz: 9c10accd9407eee892134aa58f9bbe9e9092f9159a2986702ade0479d7960db55a4f245a04f64b3be7ff789174150a074637189e09c09a505de97da3f442ff12
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'backup-agent'
5
- s.version = '1.0.6'
5
+ s.version = '1.0.7'
6
6
  s.authors = ['Yaroslav Konoplov']
7
7
  s.email = ['yaroslav@inbox.com']
8
8
  s.summary = 'Easy AWS S3 backup'
@@ -57,7 +57,7 @@ module Backup
57
57
  db_filename = "MySQL Database #{db}.xz"
58
58
  db_fileparam = Shellwords.escape(db_filename)
59
59
  dump = with_env "mysqldump #{config.get(:mysql_connect)} #{config.get(:mysqldump_options).join(' ')} --databases #{db}"
60
- xz = with_env "xz --compress --extreme -9 --keep --threads=0 --verbose"
60
+ xz = with_env "xz --compress --extreme -9 --keep --threads=0 --verbose --stdout"
61
61
 
62
62
  puts "Exec #{dump} | #{xz} > #{tmp_path}/#{db_fileparam} "
63
63
  system "#{dump} | #{xz} > #{tmp_path}/#{db_fileparam}"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: backup-agent
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.6
4
+ version: 1.0.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yaroslav Konoplov