kamal-backup 0.3.0.beta21 → 0.3.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fac561fdadaa41333d7fb9a45c57ccce8fad9d941d5e1bf1b6505d11ed4455e9
4
- data.tar.gz: 62f685b06d6ad3360fe652b2d1642a910dc3438427110eef548748ef5bb8de55
3
+ metadata.gz: 801ab5f224e1e018805b65650da3c0946d6c785eb8b2a3e3e3256bcf97649abb
4
+ data.tar.gz: 60e98bfe053103b3405d483902a167ee2d86f7a723448e06eacb2937b56fd4d3
5
5
  SHA512:
6
- metadata.gz: a2fc20a82dfa6f13531a10f93d10c23d50bfdc35adee3fa387551b33d8e22ba223c1b6416d99c113489b62b51e9ea0437213b9b7eeaa0e2c6d09030dbdf68e86
7
- data.tar.gz: 3eb54b5786843e6290b9db9a89e078780a86196577acc8927b25a4f2abfe847b5dceaa1279e24293a66b24cb413158fcbb81acb1edc921fa4f3f836d1b27089d
6
+ metadata.gz: b1dbd9a03222917490629d56a4bfca69e1abbac79ed241bf480ba0da50453e67e1224dcf5f6d315ce23039b31febe2d449300dae167ddf19e627decd07c6116e
7
+ data.tar.gz: c4392a6048ceea5ec81b20cedad84f15d864ecb37a83337571cc857de8c730c0a84629df335e9b6c4f273868ad86a6ddcc631c00315ff8ff965ac0230bcf1f5a
data/README.md CHANGED
@@ -8,6 +8,7 @@
8
8
 
9
9
  [![Gem Version](https://img.shields.io/gem/v/kamal-backup.svg)](https://rubygems.org/gems/kamal-backup)
10
10
  [![CI](https://github.com/crmne/kamal-backup/actions/workflows/ci.yml/badge.svg)](https://github.com/crmne/kamal-backup/actions/workflows/ci.yml)
11
+ [![codecov](https://codecov.io/gh/crmne/kamal-backup/branch/master/graph/badge.svg)](https://codecov.io/gh/crmne/kamal-backup)
11
12
  [![Docker Image](https://img.shields.io/badge/image-ghcr.io%2Fcrmne%2Fkamal--backup-blue)](https://github.com/crmne/kamal-backup/pkgs/container/kamal-backup)
12
13
  [![Docs](https://img.shields.io/badge/docs-kamal--backup.dev-blue)](https://kamal-backup.dev)
13
14
  [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
data/exe/kamal-backup CHANGED
@@ -1,16 +1,17 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
- root = File.expand_path("..", __dir__)
4
- gemfile = File.join(root, "Gemfile")
5
- libdir = File.join(root, "lib")
4
+ root = File.expand_path('..', __dir__)
5
+ gemfile = File.join(root, 'Gemfile')
6
+ libdir = File.join(root, 'lib')
6
7
 
7
8
  $LOAD_PATH.unshift(libdir) if File.directory?(libdir) && !$LOAD_PATH.include?(libdir)
8
9
 
9
10
  if File.exist?(gemfile)
10
- ENV["BUNDLE_GEMFILE"] ||= gemfile
11
- require "bundler/setup"
11
+ ENV['BUNDLE_GEMFILE'] ||= gemfile
12
+ require 'bundler/setup'
12
13
  end
13
14
 
14
- require "kamal_backup"
15
+ require 'kamal_backup'
15
16
 
16
17
  KamalBackup::CLI.start