cloudcannon-jekyll 4.0.0 → 4.0.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 +4 -0
- data/lib/cloudcannon-jekyll/generators/collections.rb +11 -1
- data/lib/cloudcannon-jekyll/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7be8e0835f8eaa063ec3669eaf538951304a13e66173335c66ff8ef0de99fb9a
|
4
|
+
data.tar.gz: 4fb906e15c40bb8c63f678074e65f61a1d6557217e339d03b9610d01238f513e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e8c195eaa6969fc92b4bb5a3d6439ba5b2f7d7d83cf68bea3286079deb2049bfb138c31180ac011be5acaadc3280482438cc4c7e3ef3917a1eadf838938b4643
|
7
|
+
data.tar.gz: ca5ddb63afde7d94efe7b3833010da1501031fe54b16167672fbf661fe6e40e3c9168f5214ae9a7df3d821bd03b39fa97320454b6d8a18f6bc1771439beb1069
|
data/HISTORY.md
CHANGED
@@ -22,6 +22,16 @@ module CloudCannonJekyll
|
|
22
22
|
@split_drafts = group_by_category_folder(all_drafts, 'drafts')
|
23
23
|
end
|
24
24
|
|
25
|
+
def generate_collections_config_path(key)
|
26
|
+
if key.end_with?("/posts")
|
27
|
+
File.join(@collections_dir, key.sub(/\/posts$/, "/_posts"))
|
28
|
+
elsif key.end_with?("/drafts")
|
29
|
+
File.join(@collections_dir, key.sub(/\/drafts$/, "/_drafts"))
|
30
|
+
else
|
31
|
+
File.join(@collections_dir, "_#{key}")
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
25
35
|
def generate_collections_config
|
26
36
|
collections = @site.config['collections'] || {}
|
27
37
|
collections_config = @config['collections_config'] || {}
|
@@ -62,7 +72,7 @@ module CloudCannonJekyll
|
|
62
72
|
|
63
73
|
processed['output'] ||= false
|
64
74
|
processed['auto_discovered'] = !collections_config.key?(key)
|
65
|
-
processed['path'] ||=
|
75
|
+
processed['path'] ||= generate_collections_config_path(key)
|
66
76
|
processed['path'] = processed['path'].sub(%r{^/+}, '')
|
67
77
|
|
68
78
|
Config.rename_legacy_collection_config_keys(processed)
|
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: 4.0.
|
4
|
+
version: 4.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- CloudCannon
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-03-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|