bitferry 0.0.2 → 0.0.3
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/CHANGES.md +5 -0
- data/README.md +10 -10
- data/lib/bitferry.rb +1 -1
- metadata +16 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b3cf2cfbd34a736bdab0ca41d188a732b5e848be7a746ae9d351424e305ac59d
|
4
|
+
data.tar.gz: 42c91f3371a2c61afdc813870550d19341b2b2e0e8096b5ec2b41adb05fd0670
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3c4f17e69351732f951a411bfc2f62f5052838abfa81d79655e9f6e5b9ee7826dc98a0b40005437d613155071fb71d028dcdddfb7bdcf8e29bd3e6a0ce022bcc
|
7
|
+
data.tar.gz: 64e48fa1d13e51f28c598ff57022d9d300b901a9db2b98af0b446bcfe540d6dd218e8da8d1b08a4ec7b2700af63b6e1d693d340685d49674f69b4004a30fd6d6
|
data/CHANGES.md
CHANGED
data/README.md
CHANGED
@@ -46,25 +46,25 @@ In addition, the platform-specific [Rclone](https://github.com/rclone/rclone/rel
|
|
46
46
|
|
47
47
|
## Kickstart
|
48
48
|
|
49
|
-
Install Bitferry
|
49
|
+
### Install Bitferry
|
50
50
|
|
51
51
|
```shell
|
52
52
|
gem install bitferry
|
53
53
|
```
|
54
54
|
|
55
|
-
Prepare source Bitferry volume for a mounted local filesystem
|
55
|
+
### Prepare source Bitferry volume for a mounted local filesystem
|
56
56
|
|
57
57
|
```shell
|
58
58
|
bitferry create volume /data
|
59
59
|
```
|
60
60
|
|
61
|
-
Prepare destination Bitferry volume for a mounted portable storage
|
61
|
+
### Prepare destination Bitferry volume for a mounted portable storage
|
62
62
|
|
63
63
|
```shell
|
64
64
|
bitferry create volume /mnt/usb-drive
|
65
65
|
```
|
66
66
|
|
67
|
-
Ensure the volumes are intact
|
67
|
+
### Ensure the volumes are intact
|
68
68
|
|
69
69
|
```shell
|
70
70
|
bitferry show
|
@@ -77,13 +77,13 @@ bitferry show
|
|
77
77
|
e42f2d8c /mnt/usb-drive
|
78
78
|
```
|
79
79
|
|
80
|
-
Create a (Rclone) sync task with data encryption
|
80
|
+
### Create a (Rclone) sync task with data encryption
|
81
81
|
|
82
82
|
```shell
|
83
83
|
bitferry create task sync -e /data /mnt/usb-drive/backup
|
84
84
|
```
|
85
85
|
|
86
|
-
Review the changes
|
86
|
+
### Review the changes
|
87
87
|
|
88
88
|
```shell
|
89
89
|
bitferry
|
@@ -101,7 +101,7 @@ bitferry
|
|
101
101
|
89e1c119 encrypt+synchronize :d2f10024: --> :e42f2d8c:backup
|
102
102
|
```
|
103
103
|
|
104
|
-
Perform a dry run of the specific task
|
104
|
+
### Perform a dry run of the specific task
|
105
105
|
|
106
106
|
```shell
|
107
107
|
bitferry process -vn 89e
|
@@ -126,7 +126,7 @@ Elapsed time: 0.0s
|
|
126
126
|
|
127
127
|
</details>
|
128
128
|
|
129
|
-
Process all intact tasks in sequence
|
129
|
+
### Process all intact tasks in sequence
|
130
130
|
|
131
131
|
```shell
|
132
132
|
bitferry -v x
|
@@ -151,7 +151,7 @@ Elapsed time: 0.0s
|
|
151
151
|
|
152
152
|
</details>
|
153
153
|
|
154
|
-
Observe the result
|
154
|
+
### Observe the result
|
155
155
|
|
156
156
|
```shell
|
157
157
|
ls -l /mnt/usb-drive/backup
|
@@ -168,7 +168,7 @@ ls -l /mnt/usb-drive/backup
|
|
168
168
|
|
169
169
|
</details>
|
170
170
|
|
171
|
-
Examine the detailed usage instructions
|
171
|
+
### Examine the detailed usage instructions
|
172
172
|
|
173
173
|
```shell
|
174
174
|
bitferry c t s -h
|
data/lib/bitferry.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bitferry
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Oleg A. Khlybov
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-03-
|
11
|
+
date: 2024-03-07 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - "~>"
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '5.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: commonmarker
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '1.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '1.0'
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
56
|
name: neatjson
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|