cloudcannon-jekyll 1.2.3 → 1.3.0

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: 61354938ea8f9342c8ce20f8e376dbf441fd97008ade2794eab7b3f1b8754c61
4
- data.tar.gz: ebd474b9bcb955654a4b62b7e2be99cb42f4de6cb42bb6d1a5828808ec1885ce
3
+ metadata.gz: 37cf37d06f9f769ad4044d76cc47c6e4bfd92fecd4551808d1840dd4ea9d295e
4
+ data.tar.gz: de03bd320e6f6ea5ffad113408d4ed9d257a649a7d725d5ac38fe6d5ecd9051b
5
5
  SHA512:
6
- metadata.gz: 5b94f1c5e89f86faea90781700330f8845b140947af56f29aba021514959aef744f4d0213b904c7c9a3c5e84c9415f6d17a97ebe8bdf1259202370ce62203532
7
- data.tar.gz: bbb6c0ba8ec08c3f0e10877aea8e647246cb7660feb0a31968d108160b7be66802c1e23c5465df594766006bb942b47b47fc85709f5b1a12c1b739eca767a8ee
6
+ metadata.gz: ae77aae1d6a088999c90909f2e2c08a8b3132426a12fcb5a68a215502868e51178cf116057f43b42a0e766ce748cc4d41d076847be9f80e0a131e4b19ff66299
7
+ data.tar.gz: 5948455c3956f6c49e2adc72bc9b16beab695ba11ed30890c052669ad42964e4ab175d81f7667153d1c03c40a0350e54aa99c3c087da140208ac8a163fe4cc29
data/HISTORY.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 1.3.0
2
+
3
+ * Add defaults and input-options keys to config output
4
+
1
5
  # 1.2.3
2
6
 
3
7
  * Add more ignore keys for legacy select data filter
@@ -20,6 +20,8 @@
20
20
  {% endfor %}
21
21
  },
22
22
  {% if site._comments %}"comments": {{ site._comments | cc_safe_jsonify }},{% endif %}
23
+ {% if site._options %}"input-options": {{ site._options | cc_safe_jsonify }},{% endif %}
24
+ {% if site.defaults %}"defaults": {{ site.defaults | cc_safe_jsonify }},{% endif %}
23
25
  {% if site._editor %}"editor": {
24
26
  "default-path": {{ site._editor.default_path | jsonify }}
25
27
  },{% endif %}
@@ -20,6 +20,8 @@
20
20
  {% endfor %}
21
21
  },
22
22
  {% if site._comments %}"comments": {{ site._comments | cc_safe_jsonify }},{% endif %}
23
+ {% if site._options %}"input-options": {{ site._options | cc_safe_jsonify }},{% endif %}
24
+ {% if site.defaults %}"defaults": {{ site.defaults | cc_safe_jsonify }},{% endif %}
23
25
  {% if site._editor %}"editor": {
24
26
  "default-path": {{ site._editor.default_path | jsonify }}
25
27
  },{% endif %}
@@ -27,6 +27,12 @@
27
27
  {% if site._comments -%}
28
28
  "comments": {{ site._comments | cc_safe_jsonify }},
29
29
  {%- endif %}
30
+ {% if site._options -%}
31
+ "input-options": {{ site._options | cc_safe_jsonify }},
32
+ {%- endif %}
33
+ {% if site.defaults -%}
34
+ "defaults": {{ site.defaults | cc_safe_jsonify }},
35
+ {%- endif %}
30
36
  {% if site._editor -%}
31
37
  "editor": {
32
38
  "default-path": {{ site._editor.default_path | jsonify }}
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CloudCannonJekyll
4
- VERSION = "1.2.3"
4
+ VERSION = "1.3.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cloudcannon-jekyll
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.3
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - CloudCannon
@@ -151,8 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
151
151
  - !ruby/object:Gem::Version
152
152
  version: '0'
153
153
  requirements: []
154
- rubyforge_project:
155
- rubygems_version: 2.7.6.2
154
+ rubygems_version: 3.0.3
156
155
  signing_key:
157
156
  specification_version: 4
158
157
  summary: CloudCannon Jekyll integration