backupper 0.6.0 → 0.6.1

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
  SHA256:
3
- metadata.gz: a381517df098479aaa0237669fe34e93eb27616af160d6b2d60ea055d70c1835
4
- data.tar.gz: 45d9d097401c396d046646003876f0a4078f25ec77cde66d84450e4f02eb3e96
3
+ metadata.gz: 1dd44245219b3c9f3a84381ec2be375ad988d94ba7f33d90c248510bf88b6c6a
4
+ data.tar.gz: 2b24cf425b081d25dbed494d5200322ed982472fb76eb74b90bee7c89a527984
5
5
  SHA512:
6
- metadata.gz: 4c4ebcb074e0f30928d4952b0c80f0617d3bbe7bfe0277d1ef0cb26dbad0f6bc1c14bd012dff0aec880bcf35db2c09267e5087de56432e94221dfc8adc3aa7fb
7
- data.tar.gz: 3bb3d1486bf4cc093175aa5fd28cb6afe5f6f7691d72d116dc730e333904b0a61b7637abd687d8e90609e5a9d76824f938f837949e122c790dec61ad33528504
6
+ metadata.gz: 6a6f0feda34408f60ff4a7353a0556dad3d79030b3cd2e5d0a5b90b06b562938631456ab60682c967ed91728f20e5fd39c2ab4e52d95311b413d1af8f36d51ba
7
+ data.tar.gz: a6d9390747c3cdd90bede2c7c83a3adb8af97aa05009cadffdbed0b1f523ea798c504c8ce4a1f45f1e15787182432b5d031a8256eb61d1a9476be4f3a9f0bf1d
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- backupper (0.6.0)
4
+ backupper (0.6.1)
5
5
  mail (~> 2.9)
6
6
  sshkit (~> 1.25)
7
7
 
@@ -1,6 +1,6 @@
1
1
  module DumpCommand
2
2
  # Extension of the file produced by each adapter ('.sql.bz2' if not listed here)
3
- EXTENSIONS = Hash.new('.sql.bz2').update('mydumper' => '.tar.bz2').freeze
3
+ EXTENSIONS = Hash.new('.sql.bz2').update('mydumper' => '.tar').freeze
4
4
 
5
5
  def self.mysql(database:, username: 'root', password: nil, dump_options: nil, working_dir: nil, outfile:)
6
6
  params = []
@@ -22,6 +22,6 @@ module DumpCommand
22
22
  params << "--user #{username}"
23
23
  params << "--password #{password}" if password
24
24
  params << dump_options if dump_options
25
- return "mydumper --database #{database} #{params.join(' ')} --outputdir #{working_dir} && tar -cjf #{outfile} -C #{File.dirname(working_dir)} #{File.basename(working_dir)}"
25
+ return "mydumper --database #{database} #{params.join(' ')} --outputdir #{working_dir} && tar -cf #{outfile} -C #{File.dirname(working_dir)} #{File.basename(working_dir)}"
26
26
  end
27
27
  end
@@ -1,3 +1,3 @@
1
1
  class Backupper
2
- VERSION = '0.6.0'.freeze
2
+ VERSION = '0.6.1'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: backupper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - pioz