zerofetcher 0.0.42 → 0.0.43
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/zerofetcher.rb +4 -4
- 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: ecadb6865e9270a1c9fd6aff9fab003e0097a556
|
4
|
+
data.tar.gz: 1532c07c912a562cfbb6075b216e90f4365b5756
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9e3980f439fa53759bee6a1ad961e2e5658c97e926870ca12bf39b88e9ccf5c32723c096730c3a76bdf98c8c8dd867516000698912c5f98a91c9c9633f57e1cf
|
7
|
+
data.tar.gz: ee0ec93d29c62ef87750697a8747810748af73931b0b95502d1c987e778a28d39270b1c95c58de339a7de763bec9432c39cc68496d0c558607569fecdf60efdf
|
data/lib/zerofetcher.rb
CHANGED
@@ -291,10 +291,6 @@ ErrorDocument 404 /404/index.html'
|
|
291
291
|
# Menus (as json data and images)
|
292
292
|
if data.key?("menus")
|
293
293
|
# Save Json Data
|
294
|
-
#File.write(jekyll_path+'/_data/menus.json', data['menus'].to_json)
|
295
|
-
File.write(jekyll_path+'/_data/menus.json', JSON.pretty_generate(data['menus']))
|
296
|
-
|
297
|
-
self.log('Writing File /_data/menus.json')
|
298
294
|
|
299
295
|
# Save Images
|
300
296
|
FileUtils::mkdir_p jekyll_path+'/assets/images/menus'
|
@@ -327,6 +323,10 @@ ErrorDocument 404 /404/index.html'
|
|
327
323
|
end
|
328
324
|
end
|
329
325
|
end
|
326
|
+
|
327
|
+
File.write(jekyll_path+'/_data/menus.json', JSON.pretty_generate(data['menus']))
|
328
|
+
|
329
|
+
self.log('Writing File /_data/menus.json')
|
330
330
|
end
|
331
331
|
|
332
332
|
# Downloads
|