bup 0.7.0 → 0.8.0

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
  SHA256:
3
- metadata.gz: 817a27933493ae6ac118d4c6d9def7851bd44151f4bfd8b5ec1293cd485351e8
4
- data.tar.gz: b49c3a4cd1dec954a400bee0d9aa7ac5259b19e9bfadc26baa3a479a73d4af89
3
+ metadata.gz: 4a7a2fb5ead32bfe3ae066fee80d07a7b66f2b030c83f98056c68eec57d6a4e4
4
+ data.tar.gz: 7767ad2f05f665088b94a39e32c49fa8179e3938048cc2769eeea5d75a0b090d
5
5
  SHA512:
6
- metadata.gz: '014508ef6bbc01de2eebf734b96173ac0a8c3891ae85ccfd5fd985ed03a3553344331e938bc079777e8ae492155c61abc1f56de6dd0bf8bd6c0212a599579fd7'
7
- data.tar.gz: e62b3723768c1f6d948f627c437a175be706344eabaa0ec1bbf4a07116bdae1ad4667a11d279c850d937ab7bdabe7295bcbb537a0f0eaff5fc7e84aaf9b9b348
6
+ metadata.gz: 1f0eaae23f91590737f005ffc818b3be6059c95361c9a044f556fe11eedf42f3ecb586ae1e932d43a937e2756e9436742d7c3c1d3903108726ffb321d9d823a3
7
+ data.tar.gz: 66286daf7c562e84889a9d31c3c776a50433fa1eabadab5e176bf42a29ce56140ca367bbb2951c4eff84ef4c834cdf389f6545a7b9aaea8aa5676de9c0c3095c
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.8.0] - 2022-04-27
4
+
5
+ - Drop required Ruby version to 2.7.
6
+
3
7
  ## [0.7.0] - 2021-11-29
4
8
 
5
9
  - BUG FIX: Create destination was not being expanded.
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bup (0.6.0)
4
+ bup (0.8.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/bup.gemspec CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.description = "Backup tool driver that connects tar, gnupg, and other tools to accomplish backups."
13
13
  spec.homepage = "https://rubygems.org/gems/bup"
14
14
  spec.license = "MIT"
15
- spec.required_ruby_version = ">= 3.0.2"
15
+ spec.required_ruby_version = ">= 2.7.0"
16
16
 
17
17
  # spec.metadata["allowed_push_host"] = "TODO: Set to 'https://mygemserver.com'"
18
18
 
data/exe/bup CHANGED
@@ -19,11 +19,11 @@ OptParse.new do |opt|
19
19
  profile = p
20
20
  end
21
21
 
22
- opt.on("-i", "--incremental", String, "Set the type of backup to incremental.") do
22
+ opt.on("-i", "--incremental", String, "Set the type of backup to incremental.") do
23
23
  config.runtime["type"] = "incremental"
24
24
  end
25
25
 
26
- opt.on("-f", "--full", String, "Set the type of backup to full.") do
26
+ opt.on("-f", "--full", String, "Set the type of backup to full.") do
27
27
  config.runtime["type"] = "full"
28
28
  end
29
29
 
@@ -40,11 +40,10 @@ elsif config.config["default_profile"]
40
40
  config.runtime["profile"] = config.config["default_profile"]
41
41
  end
42
42
 
43
-
44
43
  case config.runtime["action"]
45
44
  when "list"
46
- config.config["profiles"].each do |key, profile|
47
- puts "#{key} - #{profile["description"] || ""}"
45
+ config.config["profiles"].each do |key, prof|
46
+ puts "#{key} - #{prof["description"] || ""}"
48
47
  end
49
48
  else
50
49
  tar = Bup::Tar.new(config)
data/lib/bup/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bup
4
- VERSION = "0.7.0"
4
+ VERSION = "0.8.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bup
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sam Baskinger
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-11-29 00:00:00.000000000 Z
11
+ date: 2022-04-27 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Backup tool driver that connects tar, gnupg, and other tools to accomplish
14
14
  backups.
@@ -51,14 +51,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
- version: 3.0.2
54
+ version: 2.7.0
55
55
  required_rubygems_version: !ruby/object:Gem::Requirement
56
56
  requirements:
57
57
  - - ">="
58
58
  - !ruby/object:Gem::Version
59
59
  version: '0'
60
60
  requirements: []
61
- rubygems_version: 3.2.22
61
+ rubygems_version: 3.3.7
62
62
  signing_key:
63
63
  specification_version: 4
64
64
  summary: Backup tool driver.