pandocomatic 0.1.3.2 → 0.1.3.3
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/lib/pandocomatic/pandocomatic.rb +0 -3
- 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: 48bb299dc4e5de7cf6638a19c095a0a6b9931221
|
|
4
|
+
data.tar.gz: c9579f8d78a488e17839591ae7427bd7d61c5e1d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f45ab83bef686ba44bb48968d74926ff555f771fab23b974ce39e7547429bc4c6f227c37616c28b04b9d3f4f01297e0f51b317a2635ea671e01675640172d97b
|
|
7
|
+
data.tar.gz: fa4ac3d66f935b7d5b30a40d8973ed98e8043702e6fddf5fb85261ac68c46b13e2ea030def2f1e53d7642520eb42818f785a10b5a7c68e7bb42efc1620bc0db4
|
|
@@ -151,7 +151,6 @@ module Pandocomatic
|
|
|
151
151
|
# No data-dir option given: try to find the default one from pandoc
|
|
152
152
|
begin
|
|
153
153
|
data_dir = Paru::Pandoc.info()[:data_dir]
|
|
154
|
-
puts Paru::Pandoc.info()
|
|
155
154
|
rescue Paru::Error => e
|
|
156
155
|
# If pandoc cannot be run, continuing probably does not work out
|
|
157
156
|
# anyway, so raise pandoc error
|
|
@@ -174,9 +173,7 @@ module Pandocomatic
|
|
|
174
173
|
|
|
175
174
|
def self.configure(options)
|
|
176
175
|
data_dir = determine_data_dir options
|
|
177
|
-
puts data_dir
|
|
178
176
|
config_file = determine_config_file options, data_dir
|
|
179
|
-
puts config_file
|
|
180
177
|
Configuration.new options, data_dir, config_file
|
|
181
178
|
end
|
|
182
179
|
|