jekyll_from_to_until 1.0.2 → 1.0.3
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/.rubocop.yml +5 -4
- data/CHANGELOG.md +3 -0
- data/jekyll_from_to_until.gemspec +1 -1
- data/lib/jekyll_from_to_until/version.rb +1 -1
- data/lib/jekyll_from_to_until.rb +1 -3
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e9c06080cf832cfcda1eb6c9cd671885c26f512947574df19e6a6ac1fe5c35a
|
4
|
+
data.tar.gz: dd4b79b63729f6317cee948f042ce2988668115b9a0a90c654e95518c9902f1f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e9586ed9c90b47badb95791248aee4b8774b7c335314881902182f499be6afb173cdc085925186c164bb2bdc77192546ede605579cc39cf3b2b58f5a62f23ddd
|
7
|
+
data.tar.gz: f662add178d12e1be22f3595781e974908c6d0b637d78af8d2abd6c03aadc3b6918e4c115723bd5ebaf67966196b969569869695fb3191efea5fe48974acb44e
|
data/.rubocop.yml
CHANGED
@@ -23,15 +23,15 @@ Gemspec/DeprecatedAttributeAssignment:
|
|
23
23
|
Gemspec/RequireMFA:
|
24
24
|
Enabled: false
|
25
25
|
|
26
|
-
Layout/InitialIndentation:
|
27
|
-
Exclude:
|
28
|
-
- README.md
|
29
|
-
|
30
26
|
Layout/HashAlignment:
|
31
27
|
EnforcedColonStyle: table
|
32
28
|
Exclude:
|
33
29
|
- jekyll_from_to_until.gemspec
|
34
30
|
|
31
|
+
Layout/InitialIndentation:
|
32
|
+
Exclude:
|
33
|
+
- README.md
|
34
|
+
|
35
35
|
Layout/LineLength:
|
36
36
|
Max: 150
|
37
37
|
|
@@ -53,6 +53,7 @@ Metrics/BlockLength:
|
|
53
53
|
Metrics/ClassLength:
|
54
54
|
Exclude:
|
55
55
|
- spec/**/*
|
56
|
+
Max: 40
|
56
57
|
|
57
58
|
Metrics/CyclomaticComplexity:
|
58
59
|
Max: 20
|
data/CHANGELOG.md
CHANGED
@@ -23,7 +23,7 @@ Gem::Specification.new do |spec|
|
|
23
23
|
spec.name = 'jekyll_from_to_until'
|
24
24
|
spec.post_install_message = <<~END_MESSAGE
|
25
25
|
|
26
|
-
Thanks for installing #{spec.name}!
|
26
|
+
Thanks for installing #{spec.name} v#{JekyllFromToUntilVersion::VERSION}!
|
27
27
|
|
28
28
|
END_MESSAGE
|
29
29
|
spec.require_paths = ['lib']
|
data/lib/jekyll_from_to_until.rb
CHANGED
@@ -10,9 +10,7 @@ module JekyllPluginFromToUntilName
|
|
10
10
|
end
|
11
11
|
|
12
12
|
module FromToUntil
|
13
|
-
|
14
|
-
@logger = PluginMetaLogger.instance.new_logger("FromToUntil", PluginMetaLogger.instance.config)
|
15
|
-
end
|
13
|
+
@logger = PluginMetaLogger.instance.new_logger("FromToUntil", PluginMetaLogger.instance.config)
|
16
14
|
|
17
15
|
# Filters a multiline string, returning the portion beginning with the line that satisfies a regex.
|
18
16
|
# The regex could be enclosed in single quotes, double quotes, or nothing.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll_from_to_until
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Slinn
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-02-
|
11
|
+
date: 2023-02-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|
@@ -68,7 +68,7 @@ metadata:
|
|
68
68
|
source_code_uri: https://github.com/mslinn/jekyll_from_to_until
|
69
69
|
post_install_message: |2+
|
70
70
|
|
71
|
-
Thanks for installing jekyll_from_to_until!
|
71
|
+
Thanks for installing jekyll_from_to_until v1.0.3!
|
72
72
|
|
73
73
|
rdoc_options: []
|
74
74
|
require_paths:
|