network-utility 1.1.6 → 1.1.7
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/document/config.md +1 -1
- data/network.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d52a9b0bf8c2e88250ca37139d98c82a7543ad01a78bdfcd9f7c5b62811d5104
|
4
|
+
data.tar.gz: a8e01eec9c145cf5e97c3ea470126434ff794cf7aded51d3012f9ecfdb853da4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa6ff072ae3b5e92ba68539da45eadb6c5a31b248ae022e179d7a801972399e5056501b41d3ca0e817c19d902d7a44fc46aba948181901d045214a59d63c6ba5
|
7
|
+
data.tar.gz: bbf210b8b737a555c04ab75692c77930cda7071e25a16c0a207aa8d8d2b9921fa07926828e7985f33baca5a419582be3034c769d498ecd8ee8f7096f9ee492a4
|
data/document/config.md
CHANGED
@@ -675,7 +675,7 @@ module M6000
|
|
675
675
|
new_raw = []
|
676
676
|
raw.split("\n").each do|line|
|
677
677
|
if line.include?('<') && line.include?('>') && line[0..1]!='!<'
|
678
|
-
new_raw << line.gsub('<',
|
678
|
+
new_raw << line.gsub('<', "\&\lt\;").gsub('>',"\&\gt\;")
|
679
679
|
else
|
680
680
|
new_raw << line
|
681
681
|
end
|
data/network.rb
CHANGED