yobi 0.1.0
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 +7 -0
- data/CHANGELOG.md +3 -0
- data/LICENSE.txt +21 -0
- data/README.md +897 -0
- data/Rakefile +12 -0
- data/lib/yobi/argv_builder.rb +102 -0
- data/lib/yobi/errors.rb +109 -0
- data/lib/yobi/io_handle.rb +68 -0
- data/lib/yobi/mount.rb +66 -0
- data/lib/yobi/repository/backup.rb +310 -0
- data/lib/yobi/repository/cat.rb +87 -0
- data/lib/yobi/repository/check.rb +96 -0
- data/lib/yobi/repository/copy.rb +39 -0
- data/lib/yobi/repository/diff.rb +94 -0
- data/lib/yobi/repository/dump.rb +51 -0
- data/lib/yobi/repository/find.rb +160 -0
- data/lib/yobi/repository/forget.rb +164 -0
- data/lib/yobi/repository/key.rb +126 -0
- data/lib/yobi/repository/list.rb +17 -0
- data/lib/yobi/repository/ls.rb +138 -0
- data/lib/yobi/repository/migrate.rb +21 -0
- data/lib/yobi/repository/mount.rb +129 -0
- data/lib/yobi/repository/prune.rb +30 -0
- data/lib/yobi/repository/recover.rb +16 -0
- data/lib/yobi/repository/repair.rb +59 -0
- data/lib/yobi/repository/restore.rb +159 -0
- data/lib/yobi/repository/rewrite.rb +53 -0
- data/lib/yobi/repository/snapshots.rb +56 -0
- data/lib/yobi/repository/stats.rb +36 -0
- data/lib/yobi/repository/tag.rb +89 -0
- data/lib/yobi/repository/unlock.rb +17 -0
- data/lib/yobi/repository.rb +180 -0
- data/lib/yobi/restic.rb +341 -0
- data/lib/yobi/restic_output.rb +94 -0
- data/lib/yobi/snapshot.rb +45 -0
- data/lib/yobi/version.rb +8 -0
- data/lib/yobi.rb +13 -0
- data/sig/yobi.rbs +660 -0
- metadata +84 -0
metadata
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: yobi
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Zia Perdana
|
|
8
|
+
bindir: exe
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: Yobi wraps the restic CLI with a small, structured Ruby object model
|
|
13
|
+
(Repository, with backup/restore/forget/snapshots and more as plain methods) so
|
|
14
|
+
backup automation can be written, tested, and composed like ordinary Ruby code instead
|
|
15
|
+
of shell scripts.
|
|
16
|
+
email:
|
|
17
|
+
- ukaza@perdana.dev
|
|
18
|
+
executables: []
|
|
19
|
+
extensions: []
|
|
20
|
+
extra_rdoc_files: []
|
|
21
|
+
files:
|
|
22
|
+
- CHANGELOG.md
|
|
23
|
+
- LICENSE.txt
|
|
24
|
+
- README.md
|
|
25
|
+
- Rakefile
|
|
26
|
+
- lib/yobi.rb
|
|
27
|
+
- lib/yobi/argv_builder.rb
|
|
28
|
+
- lib/yobi/errors.rb
|
|
29
|
+
- lib/yobi/io_handle.rb
|
|
30
|
+
- lib/yobi/mount.rb
|
|
31
|
+
- lib/yobi/repository.rb
|
|
32
|
+
- lib/yobi/repository/backup.rb
|
|
33
|
+
- lib/yobi/repository/cat.rb
|
|
34
|
+
- lib/yobi/repository/check.rb
|
|
35
|
+
- lib/yobi/repository/copy.rb
|
|
36
|
+
- lib/yobi/repository/diff.rb
|
|
37
|
+
- lib/yobi/repository/dump.rb
|
|
38
|
+
- lib/yobi/repository/find.rb
|
|
39
|
+
- lib/yobi/repository/forget.rb
|
|
40
|
+
- lib/yobi/repository/key.rb
|
|
41
|
+
- lib/yobi/repository/list.rb
|
|
42
|
+
- lib/yobi/repository/ls.rb
|
|
43
|
+
- lib/yobi/repository/migrate.rb
|
|
44
|
+
- lib/yobi/repository/mount.rb
|
|
45
|
+
- lib/yobi/repository/prune.rb
|
|
46
|
+
- lib/yobi/repository/recover.rb
|
|
47
|
+
- lib/yobi/repository/repair.rb
|
|
48
|
+
- lib/yobi/repository/restore.rb
|
|
49
|
+
- lib/yobi/repository/rewrite.rb
|
|
50
|
+
- lib/yobi/repository/snapshots.rb
|
|
51
|
+
- lib/yobi/repository/stats.rb
|
|
52
|
+
- lib/yobi/repository/tag.rb
|
|
53
|
+
- lib/yobi/repository/unlock.rb
|
|
54
|
+
- lib/yobi/restic.rb
|
|
55
|
+
- lib/yobi/restic_output.rb
|
|
56
|
+
- lib/yobi/snapshot.rb
|
|
57
|
+
- lib/yobi/version.rb
|
|
58
|
+
- sig/yobi.rbs
|
|
59
|
+
homepage: https://codeberg.org/ukazap/yobi
|
|
60
|
+
licenses:
|
|
61
|
+
- MIT
|
|
62
|
+
metadata:
|
|
63
|
+
homepage_uri: https://codeberg.org/ukazap/yobi
|
|
64
|
+
source_code_uri: https://codeberg.org/ukazap/yobi
|
|
65
|
+
changelog_uri: https://codeberg.org/ukazap/yobi/src/branch/main/CHANGELOG.md
|
|
66
|
+
documentation_uri: https://rubydoc.info/gems/yobi
|
|
67
|
+
rdoc_options: []
|
|
68
|
+
require_paths:
|
|
69
|
+
- lib
|
|
70
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
71
|
+
requirements:
|
|
72
|
+
- - ">="
|
|
73
|
+
- !ruby/object:Gem::Version
|
|
74
|
+
version: 3.2.0
|
|
75
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
76
|
+
requirements:
|
|
77
|
+
- - ">="
|
|
78
|
+
- !ruby/object:Gem::Version
|
|
79
|
+
version: '0'
|
|
80
|
+
requirements: []
|
|
81
|
+
rubygems_version: 4.0.10
|
|
82
|
+
specification_version: 4
|
|
83
|
+
summary: Ruby interface for the Restic backup program
|
|
84
|
+
test_files: []
|