gitlab-backup-cli 0.0.1.pre
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +7 -0
- data/Rakefile +12 -0
- data/lib/gitlab/backup/cli/version.rb +9 -0
- data/lib/gitlab/backup/cli.rb +12 -0
- data/sig/gitlab/backup/cli.rbs +7 -0
- data/spec/gitlab/backup/cli_spec.rb +7 -0
- data/spec/spec_helper.rb +15 -0
- metadata +56 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: dd991b7522a0f88202df8fa2d7414178c8616da019bb170d61a090e36a13e7ad
|
4
|
+
data.tar.gz: e901f107add8997ea070ddc3375a15efcde2cb79350ba29b2e87bf6312bf36b7
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: c5ede4790bb5c7ff381b635ed7dd7105d851a1546745d8a9ac04138bf14111719f2ea803d476a956a9ca8e800c7aed312bb9a08fea9c4daa989e74bde0340fb0
|
7
|
+
data.tar.gz: b4c5acf5ab9b46284875020c91d3fca7ab1d2c6fb69cd6b61360e620512c02d8ac014843fde0500054ea956a12669d85d469f28cdf18f28bc60e136015c047a7
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2023-present GitLab B.V.
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
ADDED
data/Rakefile
ADDED
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "gitlab/backup/cli"
|
4
|
+
|
5
|
+
RSpec.configure do |config|
|
6
|
+
# Enable flags like --only-failures and --next-failure
|
7
|
+
config.example_status_persistence_file_path = ".rspec_status"
|
8
|
+
|
9
|
+
# Disable RSpec exposing methods globally on `Module` and `main`
|
10
|
+
config.disable_monkey_patching!
|
11
|
+
|
12
|
+
config.expect_with :rspec do |c|
|
13
|
+
c.syntax = :expect
|
14
|
+
end
|
15
|
+
end
|
metadata
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: gitlab-backup-cli
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1.pre
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Gabriel Mazetto
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2023-11-03 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: GitLab Backup CLI
|
14
|
+
email:
|
15
|
+
- brodock@gmail.com
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- LICENSE.txt
|
21
|
+
- README.md
|
22
|
+
- Rakefile
|
23
|
+
- lib/gitlab/backup/cli.rb
|
24
|
+
- lib/gitlab/backup/cli/version.rb
|
25
|
+
- sig/gitlab/backup/cli.rbs
|
26
|
+
- spec/gitlab/backup/cli_spec.rb
|
27
|
+
- spec/spec_helper.rb
|
28
|
+
homepage: https://gitlab.com/gitlab-org/gitlab/-/tree/master/gems/gitlab-backup-cli
|
29
|
+
licenses:
|
30
|
+
- MIT
|
31
|
+
metadata:
|
32
|
+
rubygems_mfa_required: 'true'
|
33
|
+
homepage_uri: https://gitlab.com/gitlab-org/gitlab/-/tree/master/gems/gitlab-backup-cli
|
34
|
+
source_code_uri: https://gitlab.com/gitlab-org/gitlab/-/tree/master/gems/gitlab-backup-cli
|
35
|
+
post_install_message:
|
36
|
+
rdoc_options: []
|
37
|
+
require_paths:
|
38
|
+
- lib
|
39
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '3.0'
|
44
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - ">"
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: 1.3.1
|
49
|
+
requirements: []
|
50
|
+
rubygems_version: 3.4.21
|
51
|
+
signing_key:
|
52
|
+
specification_version: 4
|
53
|
+
summary: GitLab Backup CLI
|
54
|
+
test_files:
|
55
|
+
- spec/gitlab/backup/cli_spec.rb
|
56
|
+
- spec/spec_helper.rb
|