jekyll-secinfo 0.3.1 → 0.3.2
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 +4 -4
- data/jekyll-secinfo.gemspec +0 -1
- data/lib/jekyll-secinfo/logger.rb +3 -7
- data/lib/jekyll-secinfo/version.rb +1 -1
- metadata +3 -17
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 00760bb3e57e86281242eaa873a1b3951214d6a4a846ef8070c636a75def407d
|
|
4
|
+
data.tar.gz: d23874cd8f9b97fb43c445a5e441db42a827bb0aaf2dfc77c790b6239bf6f445
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f6c9062e2dee6288c7f311ec0c49344c18561ed2763eb7650f430b216a3e0716c76aebc77a4a820c2bc161e8bfb973a2ca8b0c63db5d950432fec6a9079aea1b
|
|
7
|
+
data.tar.gz: 6aae313ff7251536886c117901402ef3adac29ad508816142fd0d9663daec265d4be5ead74aa7af35c95b6ab6ab7b5f61a7f75203cd1817563bc493b46cdeb27
|
data/jekyll-secinfo.gemspec
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
require 'jekyll-secinfo/version'
|
|
4
|
-
require 'rainbow/refinement'
|
|
5
|
-
|
|
6
|
-
using Rainbow
|
|
7
|
-
|
|
8
4
|
|
|
9
5
|
module Jekyll::Secinfo
|
|
10
6
|
class Logger
|
|
@@ -15,14 +11,14 @@ module Jekyll::Secinfo
|
|
|
15
11
|
def self.display_info
|
|
16
12
|
self.log "Jekyll-Secinfo #{Jekyll::Secinfo::VERSION}"
|
|
17
13
|
self.log 'A Jekyll plugin to provide clickability to security info like CVEs and CWEs.'
|
|
18
|
-
self.log 'https://github.com/MrSeccubus/jekyll-secinfo'
|
|
14
|
+
self.log 'https://github.com/MrSeccubus/jekyll-secinfo'
|
|
19
15
|
end
|
|
20
16
|
|
|
21
17
|
def self.log(content)
|
|
22
18
|
if (content.is_a? String)
|
|
23
|
-
self.output 'Jekyll Secinfo', content
|
|
19
|
+
self.output 'Jekyll Secinfo', content
|
|
24
20
|
else
|
|
25
|
-
self.output 'Jekyll Secinfo', content.inspect
|
|
21
|
+
self.output 'Jekyll Secinfo', content.inspect
|
|
26
22
|
end
|
|
27
23
|
end
|
|
28
24
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-secinfo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Frank Breedijk
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2022-01-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -24,20 +24,6 @@ dependencies:
|
|
|
24
24
|
- - ">="
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '0'
|
|
27
|
-
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: rainbow
|
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
|
30
|
-
requirements:
|
|
31
|
-
- - "~>"
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
version: '3.0'
|
|
34
|
-
type: :runtime
|
|
35
|
-
prerelease: false
|
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
-
requirements:
|
|
38
|
-
- - "~>"
|
|
39
|
-
- !ruby/object:Gem::Version
|
|
40
|
-
version: '3.0'
|
|
41
27
|
- !ruby/object:Gem::Dependency
|
|
42
28
|
name: bundler
|
|
43
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -137,7 +123,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
137
123
|
- !ruby/object:Gem::Version
|
|
138
124
|
version: '0'
|
|
139
125
|
requirements: []
|
|
140
|
-
rubygems_version: 3.
|
|
126
|
+
rubygems_version: 3.3.3
|
|
141
127
|
signing_key:
|
|
142
128
|
specification_version: 4
|
|
143
129
|
summary: jekyll plugin to generate html snippets various security info
|