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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: eeb3297631724f74bcfbcea67c59f71f4131a6d142f3b98c86cbb0836368d1ad
4
- data.tar.gz: '029b4e2b8eadea4a68b23b721d46ed3546d25269fb927ddd729781f7a67ae02f'
3
+ metadata.gz: 72191685bba3ff80e0663b34d754a34a913358ba4f1badc6e978ad4ff1e808d9
4
+ data.tar.gz: e8e5f6ad64d481f7d5e33f9ade27bc5b8424905d43d6b9c6668b97159fd63942
5
5
  SHA512:
6
- metadata.gz: 3ccb7bae3fc78b5361aa8f951eaca5f34bcd0c3a96fcf59a63a87931fdbdccdd784ed7174deaa3db2f87aa917383ed8f056150f342813eb1e1b5950ce4bde91e
7
- data.tar.gz: d725803a7cd455c0a6e2fa1bdabe0ffb37c3e37620252703dda7261fa8c58652f3e67cbb2a75b00ec00d113f90e1d8b73a456cb9d18dd0a3f7658e7dd033006a
6
+ metadata.gz: 622079a0cd4644e9195e264808dc5300edd01f8f7d4af3ebc1b4fdabea34be6370b406ac1d312d2b8c5f1785320e7cb5f4ac639041fa5a33a9f32e0fdec57fe6
7
+ data.tar.gz: 0c534951d7a55c3398e5a8b8b29130ae3181b4a1ffc3d916a645337331ff69fb1c50d56b6d8abfd952173b1164bb2c4ce96c3cec6d630abc44ec7e69bfc3c445
@@ -3,7 +3,7 @@
3
3
 
4
4
  module Zenithal
5
5
 
6
- VERSION = "1.6.0"
6
+ VERSION = "1.6.1"
7
7
  VERSION_ARRAY = VERSION.split(/\./).map(&:to_i)
8
8
 
9
9
  end
@@ -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.0
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-04-19 00:00:00.000000000 Z
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.