backup_restore 0.0.5 → 0.0.6
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 +4 -4
- data/lib/backup_restore.rb +6 -0
- metadata +34 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b2c27b611c2ff9e4de8e93faa31bce3febbc6c2a02e66fcc21620459091ed5b4
|
4
|
+
data.tar.gz: 8fb1653d8f2ede0a8f08c01bc38779403300c003c6e401b1b7b96ce3457efae3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 111b1c06a95ab1fadb79a9603da1c836274caa3167394b7ccb9eacedbe452ece891f35c3c23c2d19f8ec22b1c209c749208ade03acd5875af72bc45e7eff455a
|
7
|
+
data.tar.gz: f5097365ce1716be134b80c4042c801e97e375e216b2fa7707a746ffb35d9b298dbb4f35eea0caa9fa41dbf04d147071d5c865830354008c56d3ed39c4895201
|
data/lib/backup_restore.rb
CHANGED
@@ -205,10 +205,16 @@ class BackupRestore
|
|
205
205
|
filepath_a, filepath_b = /\AFiles (.+) and (.+) differ\z/.match(line).captures
|
206
206
|
unimportant = true if filepath_a =~ /\A#{r_prefix}#{r_filter}.*\z/
|
207
207
|
unimportant = true if filepath_b =~ /\A#{r_prefix}#{r_filter}.*\z/
|
208
|
+
elsif line =~ /\ASymbolic links (.+) and (.+) differ\z/
|
209
|
+
filepath_a, filepath_b = /\ASymbolic links (.+) and (.+) differ\z/.match(line).captures
|
210
|
+
unimportant = true if filepath_a =~ /\A#{r_prefix}#{r_filter}.*\z/
|
211
|
+
unimportant = true if filepath_b =~ /\A#{r_prefix}#{r_filter}.*\z/
|
208
212
|
elsif line =~ /\AFile (.+) is a fifo while file (.+) is a fifo\z/
|
209
213
|
unimportant = true
|
210
214
|
elsif line =~ /\AFile (.+) is a character special file while file (.+) is a character special file\z/
|
211
215
|
unimportant = true
|
216
|
+
elsif line =~ /\AFile (.+) is a block special file while file (.+) is a block special file\z/
|
217
|
+
unimportant = true
|
212
218
|
elsif line == everything_is_fine_message.strip
|
213
219
|
next
|
214
220
|
elsif line == ""
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: backup_restore
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mateusz Konieczny
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-03-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: matkoniecz-ruby-style
|
@@ -24,6 +24,34 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: simplecov
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ">="
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
27
55
|
description: 'Script for unpacking backups produced by the backup gem. See https://github.com/backup/backup-features/issues/28
|
28
56
|
for discussion about this feature in backup gem itself. '
|
29
57
|
email: matkoniecz@gmail.com
|
@@ -36,7 +64,7 @@ homepage: https://github.com/matkoniecz/backup-gem-extractor-crutch
|
|
36
64
|
licenses:
|
37
65
|
- GPL-3.0
|
38
66
|
metadata: {}
|
39
|
-
post_install_message:
|
67
|
+
post_install_message:
|
40
68
|
rdoc_options: []
|
41
69
|
require_paths:
|
42
70
|
- lib
|
@@ -51,8 +79,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
51
79
|
- !ruby/object:Gem::Version
|
52
80
|
version: '0'
|
53
81
|
requirements: []
|
54
|
-
rubygems_version: 3.
|
55
|
-
signing_key:
|
82
|
+
rubygems_version: 3.4.20
|
83
|
+
signing_key:
|
56
84
|
specification_version: 4
|
57
85
|
summary: Script for unpacking backups produced by the backup gem.
|
58
86
|
test_files: []
|