cloudcannon-jekyll 0.3.0 → 0.3.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/HISTORY.md +5 -0
- data/lib/cloudcannon-jekyll/generator.rb +5 -0
- data/lib/cloudcannon-jekyll/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 83d8c10e1f93435eb7f8cf67d63b3cf94c35ca24a4f6b02de64c11925f829213
|
|
4
|
+
data.tar.gz: 178b75ec1c4984773ef897967e7973997811806237deefeca61dc906ab7a1bc2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d38402f61598857b9b6dba32c67d1ca44dd575dd93591a4944af0bd52bc5fb322cb5b2c9013c534a6031bed72d17583288f699bfb92c1853182b1bf4152c48be
|
|
7
|
+
data.tar.gz: 6a79c497b8718283e72d65a8b415d77808470777df547701a30f1f564fb5d5b73e20e5ba7be17868b542ab79cc16791f3cfd556e6fa20d5dde75031d52b62e66
|
data/HISTORY.md
CHANGED
|
@@ -15,6 +15,11 @@ module CloudCannonJekyll
|
|
|
15
15
|
|
|
16
16
|
collections_config = @site.config["collections"].dup || {}
|
|
17
17
|
|
|
18
|
+
# Workaround for empty collection configurations
|
|
19
|
+
collections_config.each_key do |key|
|
|
20
|
+
collections_config[key] ||= { "output" => false }
|
|
21
|
+
end
|
|
22
|
+
|
|
18
23
|
payload = @site.site_payload.merge({
|
|
19
24
|
"gem_version" => CloudCannonJekyll::VERSION,
|
|
20
25
|
})
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cloudcannon-jekyll
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- CloudCannon
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-11-
|
|
11
|
+
date: 2020-11-25 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -142,7 +142,7 @@ homepage: https://github.com/cloudcannon/cloudcannon-jekyll
|
|
|
142
142
|
licenses:
|
|
143
143
|
- MIT
|
|
144
144
|
metadata: {}
|
|
145
|
-
post_install_message:
|
|
145
|
+
post_install_message:
|
|
146
146
|
rdoc_options: []
|
|
147
147
|
require_paths:
|
|
148
148
|
- lib
|
|
@@ -158,7 +158,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
158
158
|
version: '0'
|
|
159
159
|
requirements: []
|
|
160
160
|
rubygems_version: 3.0.3
|
|
161
|
-
signing_key:
|
|
161
|
+
signing_key:
|
|
162
162
|
specification_version: 4
|
|
163
163
|
summary: CloudCannon Jekyll integration
|
|
164
164
|
test_files: []
|