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.
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: []