pandocomatic 0.2.7.8 → 0.2.8
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d1284979156a2581d20af236ed7d72345f31b072070be957977636a5f8cccc75
|
|
4
|
+
data.tar.gz: 321ac5998d2041ec5a7860c5fe6dbe0854bd41855ba42def4ee2743a4be8c908
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1484fa4d1cfae0b195e5d238c11e5f9e2d346cb9b4891ee83b17268fc867ab098da810032a6edf5551c89b58516dd3e6f84fc7005f58a0f2b452187d608cc001
|
|
7
|
+
data.tar.gz: 8dfeb39e74c7621f9d55e50a43a0dc3dfb0d6ac1d2ef680b0dee0c27cd47438c836af89958d18b7d7cf68b181f15260815d733f72e04421de3d4118c5f7d195e
|
|
@@ -184,6 +184,10 @@ module Pandocomatic
|
|
|
184
184
|
Dir.chdir(src_dir) do
|
|
185
185
|
converter = Paru::Pandoc.new
|
|
186
186
|
options.each do |option, value|
|
|
187
|
+
# Options come from a YAML string. In YAML, properties without a value get value nil.
|
|
188
|
+
# Interpret these empty properties as "skip this property"
|
|
189
|
+
next if value.nil?
|
|
190
|
+
|
|
187
191
|
if PANDOC_OPTIONS_WITH_PATH.include? option
|
|
188
192
|
is_executable = option == "filter"
|
|
189
193
|
if value.is_a? Array
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pandocomatic
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Huub de Beer
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-11-
|
|
11
|
+
date: 2021-11-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: paru
|
|
@@ -19,7 +19,7 @@ dependencies:
|
|
|
19
19
|
version: '0.4'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 0.4.
|
|
22
|
+
version: 0.4.3
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +29,7 @@ dependencies:
|
|
|
29
29
|
version: '0.4'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 0.4.
|
|
32
|
+
version: 0.4.3
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: optimist
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -155,7 +155,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
155
155
|
version: '0'
|
|
156
156
|
requirements:
|
|
157
157
|
- pandoc, a universal document converter
|
|
158
|
-
rubygems_version: 3.2.
|
|
158
|
+
rubygems_version: 3.2.3
|
|
159
159
|
signing_key:
|
|
160
160
|
specification_version: 4
|
|
161
161
|
summary: Automate the use of pandoc
|