local 0.1.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 +7 -0
- data/bin/local +31 -0
- metadata +78 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 81649152c6f9e608e6ad89aa75d5930ee76dfd0a0dbf37812490c9736102b34d
|
|
4
|
+
data.tar.gz: e4f8e425f9090c17c06bb1689c2ed8417d87ec448d002c3e2acd7ee5e9b1313c
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: a490f031eca5ccd7e5666e95bc89fa4e0c857e24eb13a2d4f1a53bd9b9c962e000af9101fe4f13007bed62ad6f67e867dbcf274460362deb7dcae6f29e0cdbe2
|
|
7
|
+
data.tar.gz: d7b8c5ee84578b30462349a4d73f0b14d86f060919eb69ad25a5e7f46799fcf8ad9804bbabb86a7bb4d00c617a88225facff141b63010d0c9d5dcd794dfbd0ce
|
data/bin/local
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
# LoCAl is a simple Certificate Authority bot.
|
|
4
|
+
# Copyright (C) 2023 Alex Speranza
|
|
5
|
+
|
|
6
|
+
# This program is free software: you can redistribute it and/or modify
|
|
7
|
+
# it under the terms of the GNU Affero General Public License as published
|
|
8
|
+
# by the Free Software Foundation, either version 3 of the License, or
|
|
9
|
+
# (at your option) any later version.
|
|
10
|
+
|
|
11
|
+
# This program is distributed in the hope that it will be useful,
|
|
12
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
13
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
14
|
+
# GNU Affero General Public License for more details.
|
|
15
|
+
|
|
16
|
+
# You should have received a copy of the GNU Affero General Public License
|
|
17
|
+
# along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
18
|
+
|
|
19
|
+
# frozen_string_literal: true
|
|
20
|
+
|
|
21
|
+
require 'bundler/setup'
|
|
22
|
+
require 'local'
|
|
23
|
+
|
|
24
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
|
25
|
+
# with your gem easier. You can also use a different console, if you like.
|
|
26
|
+
|
|
27
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
|
28
|
+
# require 'pry'
|
|
29
|
+
# Pry.start
|
|
30
|
+
|
|
31
|
+
Local.main
|
metadata
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: local
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Alex Speranza
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2023-01-13 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: logger
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 1.5.3
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 1.5.3
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: psych
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - "~>"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 5.0.1
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - "~>"
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: 5.0.1
|
|
41
|
+
description: LoCAl is a local certificate authority which can generate and renew certificates.
|
|
42
|
+
email:
|
|
43
|
+
- alex.speranza@studio.unibo.it
|
|
44
|
+
executables:
|
|
45
|
+
- local
|
|
46
|
+
extensions: []
|
|
47
|
+
extra_rdoc_files: []
|
|
48
|
+
files:
|
|
49
|
+
- bin/local
|
|
50
|
+
homepage: https://github.com/asperan/local
|
|
51
|
+
licenses:
|
|
52
|
+
- AGPL-3.0-or-later
|
|
53
|
+
metadata:
|
|
54
|
+
allowed_push_host: https://rubygems.org
|
|
55
|
+
homepage_uri: https://github.com/asperan/local
|
|
56
|
+
source_code_uri: https://github.com/asperan/local
|
|
57
|
+
changelog_uri: https://github.com/asperan/local
|
|
58
|
+
rubygems_mfa_required: 'true'
|
|
59
|
+
post_install_message:
|
|
60
|
+
rdoc_options: []
|
|
61
|
+
require_paths:
|
|
62
|
+
- lib
|
|
63
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
64
|
+
requirements:
|
|
65
|
+
- - ">="
|
|
66
|
+
- !ruby/object:Gem::Version
|
|
67
|
+
version: 3.1.2
|
|
68
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
|
+
requirements:
|
|
70
|
+
- - ">="
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: '0'
|
|
73
|
+
requirements: []
|
|
74
|
+
rubygems_version: 3.3.26
|
|
75
|
+
signing_key:
|
|
76
|
+
specification_version: 4
|
|
77
|
+
summary: Local Certificate Authority with auto renewal
|
|
78
|
+
test_files: []
|