yobi 0.1.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yobi
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zia Perdana
@@ -9,10 +9,7 @@ bindir: exe
9
9
  cert_chain: []
10
10
  date: 1980-01-02 00:00:00.000000000 Z
11
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.
12
+ description: Ruby interface for the Restic backup program
16
13
  email:
17
14
  - ukaza@perdana.dev
18
15
  executables: []
@@ -22,12 +19,12 @@ files:
22
19
  - CHANGELOG.md
23
20
  - LICENSE.txt
24
21
  - README.md
25
- - Rakefile
26
22
  - lib/yobi.rb
27
23
  - lib/yobi/argv_builder.rb
28
24
  - lib/yobi/errors.rb
25
+ - lib/yobi/fancy_hash.rb
29
26
  - lib/yobi/io_handle.rb
30
- - lib/yobi/mount.rb
27
+ - lib/yobi/mount_handle.rb
31
28
  - lib/yobi/repository.rb
32
29
  - lib/yobi/repository/backup.rb
33
30
  - lib/yobi/repository/cat.rb
@@ -37,6 +34,7 @@ files:
37
34
  - lib/yobi/repository/dump.rb
38
35
  - lib/yobi/repository/find.rb
39
36
  - lib/yobi/repository/forget.rb
37
+ - lib/yobi/repository/init.rb
40
38
  - lib/yobi/repository/key.rb
41
39
  - lib/yobi/repository/list.rb
42
40
  - lib/yobi/repository/ls.rb
data/Rakefile DELETED
@@ -1,12 +0,0 @@
1
- # frozen_string_literal: true
2
-
3
- require "bundler/gem_tasks"
4
- require "rspec/core/rake_task"
5
-
6
- RSpec::Core::RakeTask.new(:spec)
7
-
8
- require "parallel_tests/tasks"
9
-
10
- require "standard/rake"
11
-
12
- task default: %i[spec standard]