zenml 1.6.0 → 1.6.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 +4 -4
- data/source/zenml.rb +1 -1
- data/source/zenml/parser.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 72191685bba3ff80e0663b34d754a34a913358ba4f1badc6e978ad4ff1e808d9
|
|
4
|
+
data.tar.gz: e8e5f6ad64d481f7d5e33f9ade27bc5b8424905d43d6b9c6668b97159fd63942
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 622079a0cd4644e9195e264808dc5300edd01f8f7d4af3ebc1b4fdabea34be6370b406ac1d312d2b8c5f1785320e7cb5f4ac639041fa5a33a9f32e0fdec57fe6
|
|
7
|
+
data.tar.gz: 0c534951d7a55c3398e5a8b8b29130ae3181b4a1ffc3d916a645337331ff69fb1c50d56b6d8abfd952173b1164bb2c4ce96c3cec6d630abc44ec7e69bfc3c445
|
data/source/zenml.rb
CHANGED
data/source/zenml/parser.rb
CHANGED
|
@@ -206,7 +206,7 @@ module Zenithal::ZenithalParserMethod
|
|
|
206
206
|
rest_children_list = many(->{parse_children(options)})
|
|
207
207
|
children_list = [first_children] + rest_children_list
|
|
208
208
|
else
|
|
209
|
-
children_list = many(->{parse_children(options)})
|
|
209
|
+
children_list = many(->{parse_children(options)}, 1..)
|
|
210
210
|
end
|
|
211
211
|
return children_list
|
|
212
212
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zenml
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.6.
|
|
4
|
+
version: 1.6.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ziphil
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-05-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
13
|
description: |
|
|
14
14
|
This gem serves a tool for parsing a document written in ZenML, an alternative new syntax for XML, to an XML node tree.
|