bitferry 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES.md +5 -0
  3. data/README.md +10 -10
  4. data/lib/bitferry.rb +1 -1
  5. metadata +16 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '08ca0d191eb9905a93c35437fba08ccd3ef79ec0f04d1b64b9ac8e48582fd83a'
4
- data.tar.gz: f7fdb4592f72f72a532dfbf48f362b7fa8d3b4141a11cd8483d2e98c56a9f1bd
3
+ metadata.gz: b3cf2cfbd34a736bdab0ca41d188a732b5e848be7a746ae9d351424e305ac59d
4
+ data.tar.gz: 42c91f3371a2c61afdc813870550d19341b2b2e0e8096b5ec2b41adb05fd0670
5
5
  SHA512:
6
- metadata.gz: 3fb6e3700029f5ca720228aa3dd6d61b21949322b4ee3d497597b586715962f9e46ebda45d2eec07d1782dbccd7a5b3c3a6b444f832d7060e88f74301748b6db
7
- data.tar.gz: 75fcc7c1724b5219eecc3a421a5ff4bcbd90018f5e74eb7491be260faebf9e5686021768be785bfe5f59a5aa517fd766688f443083adf7c8dfc8daeaecbbea43
6
+ metadata.gz: 3c4f17e69351732f951a411bfc2f62f5052838abfa81d79655e9f6e5b9ee7826dc98a0b40005437d613155071fb71d028dcdddfb7bdcf8e29bd3e6a0ce022bcc
7
+ data.tar.gz: 64e48fa1d13e51f28c598ff57022d9d300b901a9db2b98af0b446bcfe540d6dd218e8da8d1b08a4ec7b2700af63b6e1d693d340685d49674f69b4004a30fd6d6
data/CHANGES.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 0.0.3
2
+
3
+ - Windows bundle
4
+ - Doc fixes
5
+
1
6
  ## 0.0.2
2
7
 
3
8
  - Fix infinite nesting of directories during GEM installation
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
@@ -12,7 +12,7 @@ require 'shellwords'
12
12
  module Bitferry
13
13
 
14
14
 
15
- VERSION = '0.0.2'
15
+ VERSION = '0.0.3'
16
16
 
17
17
 
18
18
  module Logging
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.2
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-06 00:00:00.000000000 Z
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