jekyll_aspec 1.0.4 → 1.0.5
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/Gemfile.lock +1 -1
- data/lib/extensions/requirement_appendix.rb +6 -3
- data/lib/extensions/requirement_block.rb +1 -1
- data/lib/jekyll_aspec/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ee4c7c851c368babd8041e9abf52173d54436ede
|
4
|
+
data.tar.gz: 0efa7e337687113a78915cb83c1071f56389efab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1ad52cbe7be607276deb122f9ca244e0a2a91252fe579f82c238635dcda8eff64bd9ab9c7b4d4464745ba97e27952ee1610c9bac47925f3fa78fc8f0aff9bbb0
|
7
|
+
data.tar.gz: ad989f42bd716aef0920c7099cd8a5432dedcac0f587fe4c63dac1ca5d84899fbd7fbf9b8153c92e2b80a189ef8742f7a4c0b6bf02fd7d670b5f94fa22fe7afe
|
data/Gemfile.lock
CHANGED
@@ -30,13 +30,14 @@ adoc_files.sort!
|
|
30
30
|
adoc_files.each do |f|
|
31
31
|
inc = false
|
32
32
|
commented = false
|
33
|
-
|
33
|
+
i = 0
|
34
34
|
File.read(f).each_line do |li|
|
35
|
+
i += 1
|
35
36
|
incommentblock ^= true if li[CommentBlockRx]
|
36
37
|
commented = true if li[CommentLineRx]
|
37
38
|
inc = true if li[/published: false/]
|
38
39
|
|
39
|
-
doctitle = /(?<=title:\s).+/.match(li) if li[/^title:\s+\w.+/]
|
40
|
+
doctitle = /(?<=title:\s).+/.match(li) if li[/^title:\s+\w.+/] if i < 8
|
40
41
|
chapter = /(?<=chapter:\s).+/.match(li) if li[/^chapter:\s+\w.+/]
|
41
42
|
|
42
43
|
if li[/\[\s*req\s*,\s*id\s*=\s*\w+-?[0-9]+\s*,.*/]
|
@@ -82,7 +83,9 @@ reqs.uniq!
|
|
82
83
|
i = 0
|
83
84
|
reqs.each do |req, f, title, chapter, doctitle|
|
84
85
|
i += 1
|
85
|
-
|
86
|
+
# TODO - find better solution for sanitized titles:
|
87
|
+
title = title.gsub(/\`/, '').gsub(/\'/, '').gsub(/\*/, '')
|
88
|
+
|
86
89
|
id = /[^,]*\s*id\s*=\s*(\w+-?[0-9]+)\s*,.*/.match(req)[1]
|
87
90
|
version = /(?<=version=)\d+/.match(req)
|
88
91
|
|
@@ -22,7 +22,7 @@ Extensions.register do
|
|
22
22
|
# " = "
|
23
23
|
# & = &
|
24
24
|
downcased_title = attrs['title'].downcase.tr(' ', '_').gsub('"', '"')
|
25
|
-
san_title = attrs['title'].gsub(/&/, '&')
|
25
|
+
san_title = attrs['title'].gsub(/&/, '&').gsub(/\`/, '').gsub(/\'/, '').gsub(/\*/, '')
|
26
26
|
rescue Exception => msg
|
27
27
|
puts msg
|
28
28
|
# If no title exists on the Req block, throw an exception
|
data/lib/jekyll_aspec/version.rb
CHANGED