cloudcannon-jekyll 1.5.2 → 1.5.7

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: 0407bacd5338d40b0e7b409eda06a76d37a9919783257247f1d3f3690e699efa
4
- data.tar.gz: 06cff77745e8ac590eaad34a544323dd8ca268655b6a62006ffd9572c1e1b402
3
+ metadata.gz: 3054f2fad52e25c68f74efaea8d7adaf4186eb3c553a1e4f0a8b0d8b7502a5dd
4
+ data.tar.gz: e4826cd5492f8081a32d6886b4d039ca65f464c8833d8653716a715c07112fcd
5
5
  SHA512:
6
- metadata.gz: 9261bb287f986877ac87f34ad50a4ed4102b84571a0595fab098021d17a06f7f8132e7e27ce98fa08597e392330db9b206f77f7f96c6e0caad573282776994f0
7
- data.tar.gz: d0d882360b677dd594316b92cf0f4ec3798d35451248fc5ed5d13df002d3015f473463994bf85f9d977b8850a0b66995253c630ff5296aa98b1c045ff901ad00
6
+ metadata.gz: a73fd3d4cf8f9a244ac744d05dabc6361972d9fbe669dfcfe13f651bfc1d6e71c6b5e5c1c7b172f46158fb9983df788d796dbe6da32fdb2d9a7ca440907f00fa
7
+ data.tar.gz: 2bfb1f2757052b0c30b2052765bd3ecedc7c1d8d5ee9c7eceeccad9a358facce4f1376b0a710aa07bc4d9dbe2968131149a11cd597f14351ccab087b12772261
data/HISTORY.md CHANGED
@@ -1,3 +1,26 @@
1
+ # 1.5.7
2
+
3
+ * Fix pages collection clash with built-in pages
4
+ * Fixed posts collection config data overwriting drafts data
5
+
6
+ # 1.5.6
7
+
8
+ * Force generator to run after other lowest priority plugins
9
+
10
+ # 1.5.5
11
+
12
+ * Re-add id field for documents
13
+ * Fix for potential nil reference
14
+
15
+ # 1.5.4
16
+
17
+ * Rework fallback for older versions of Jekyll when reading data, posts and drafts again
18
+
19
+ # 1.5.3
20
+
21
+ * Rework fallback for older versions of Jekyll when reading data, posts and drafts
22
+ * Fix deprecation warning for `posts.map`
23
+
1
24
  # 1.5.2
2
25
 
3
26
  * Fix for empty collection configurations
@@ -17,6 +40,10 @@
17
40
  * Add `url` to static-pages
18
41
  * Normalise `_path` in static-pages
19
42
 
43
+ # 1.4.3
44
+
45
+ * Fix off-by-one depth for nested documents from last change
46
+
20
47
  # 1.4.2
21
48
 
22
49
  * Added max depth parameter for jsonify filter and increase it for array structures in config output
@@ -23,6 +23,6 @@
23
23
  {% for collection in site.collections %}"{{ collection[0] | xml_escape }}": {{ collection[1].docs | cc_jsonify }}{% unless forloop.last %},{% endunless %}
24
24
  {% endfor %}
25
25
  },
26
- "pages": {{ site.pages | cc_jsonify }},
26
+ "pages": {{ site.html_pages | cc_jsonify }},
27
27
  "static-pages": {{ site.static_files | cc_static_files_jsonify }}
28
28
  }
@@ -22,6 +22,6 @@
22
22
  {% for collection in site.collections %}"{{ collection.label | xml_escape }}": {{ collection.docs | cc_jsonify }}{% unless forloop.last %},{% endunless %}
23
23
  {% endfor %}
24
24
  },
25
- "pages": {{ site.pages | cc_jsonify }},
25
+ "pages": {{ site.html_pages | cc_jsonify }},
26
26
  "static-pages": {{ site.static_files | cc_static_files_jsonify }}
27
27
  }
@@ -36,6 +36,6 @@
36
36
  {%- unless forloop.last %},{% endunless %}
37
37
  {%- endfor -%}
38
38
  },
39
- "pages": {{ site.pages | cc_jsonify }},
39
+ "pages": {{ site.html_pages | cc_jsonify }},
40
40
  "static-pages": {{ site.static_files | cc_static_files_jsonify }}
41
41
  }
@@ -7,13 +7,17 @@ require_relative "reader"
7
7
  module CloudCannonJekyll
8
8
  # Generates JSON files containing build config and build output details
9
9
  class Generator < Jekyll::Generator
10
+ # Override the Jekyll::Plugin spaceship to push our plugin to the very end
10
11
  priority :lowest
12
+ def self.<=>(*)
13
+ 1
14
+ end
11
15
 
12
16
  def generate(site)
13
17
  @site = site
14
18
  @reader = Reader.new(@site)
15
19
 
16
- collections_config = @site.config["collections"].dup || {}
20
+ collections_config = @site.config["collections"]&.dup || {}
17
21
 
18
22
  # Workaround for empty collection configurations
19
23
  collections_config.each_key do |key|
@@ -49,11 +53,13 @@ module CloudCannonJekyll
49
53
  @site.config["data_dir"] || "_data"
50
54
  end
51
55
 
56
+ # rubocop:disable Metrics/AbcSize
52
57
  def add_category_folder_config(collections_config, posts_config = {})
53
58
  posts = @site.posts || @site.collections["posts"]
59
+ docs = posts.class.method_defined?(:docs) ? posts.docs : posts
54
60
  seen = {}
55
61
 
56
- posts.map do |post|
62
+ docs.map do |post|
57
63
  parts = post.relative_path.split("/_posts/")
58
64
  path = parts.first
59
65
 
@@ -80,6 +86,7 @@ module CloudCannonJekyll
80
86
  path
81
87
  end
82
88
  end
89
+ # rubocop:enable Metrics/AbcSize
83
90
 
84
91
  # Add data to collections config if raw data files exist
85
92
  def add_data_config(collections_config)
@@ -92,9 +99,7 @@ module CloudCannonJekyll
92
99
  collections_config["posts"] = { "output" => true } if Jekyll::VERSION.start_with? "2."
93
100
  drafts = @reader.read_drafts(collections_dir)
94
101
 
95
- if collections_config.key?("posts")
96
- collections_config["drafts"] = collections_config["posts"].dup
97
- elsif drafts.any?
102
+ if (collections_config.key?("posts") && !collections_config.key?("drafts")) || drafts.any?
98
103
  collections_config["drafts"] = {}
99
104
  end
100
105
 
@@ -107,7 +107,7 @@ module CloudCannonJekyll
107
107
  end
108
108
 
109
109
  def self.document_to_json(input, depth, max_depth)
110
- prevent = %w(dir id relative_path url collection)
110
+ prevent = %w(dir relative_path url collection)
111
111
 
112
112
  out = [
113
113
  "\"path\": #{JsonifyFilter.to_json(input.relative_path, depth, max_depth)}",
@@ -120,6 +120,10 @@ module CloudCannonJekyll
120
120
  out.push("\"collection\": #{collection_json}")
121
121
  end
122
122
 
123
+ if input.respond_to? :id
124
+ out.push("\"id\": #{JsonifyFilter.to_json(input.id, depth, max_depth)}")
125
+ end
126
+
123
127
  out += JsonifyFilter.document_data_to_a(input.data, prevent, depth, max_depth)
124
128
  "{#{out.join(",")}}"
125
129
  end
@@ -167,7 +171,7 @@ module CloudCannonJekyll
167
171
  def self.to_json(input, depth, max_depth = 9, key_swaps = {})
168
172
  depth += 1
169
173
 
170
- if depth > max_depth || (depth > 2 && JsonifyFilter.document_type?(input))
174
+ if depth > max_depth || (depth > 3 && JsonifyFilter.document_type?(input))
171
175
  '"MAXIMUM_DEPTH"'
172
176
  elsif JsonifyFilter.simple_type?(input)
173
177
  input.to_json
@@ -1,12 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "jekyll"
4
-
5
- if !Jekyll::VERSION.start_with? "2."
6
- require_relative "readers/data-reader"
7
- else
8
- require_relative "readers/old-data-reader"
9
- end
4
+ require_relative "readers/old-data-reader"
5
+ require_relative "readers/data-reader"
10
6
 
11
7
  module CloudCannonJekyll
12
8
  # Wraps read functions into one class
@@ -18,6 +14,7 @@ module CloudCannonJekyll
18
14
  end
19
15
 
20
16
  def read_data(dir = "_data")
17
+ # DataReader doesn't exist in old versions of Jekyll
21
18
  if Jekyll::VERSION.start_with? "2."
22
19
  CloudCannonJekyll::OldDataReader.new(@site).read(dir)
23
20
  else
@@ -26,6 +23,7 @@ module CloudCannonJekyll
26
23
  end
27
24
 
28
25
  def read_drafts(dir = "")
26
+ # PostReader doesn't exist in old versions of Jekyll
29
27
  if Jekyll::VERSION.start_with? "2."
30
28
  @site.read_content(dir, "_drafts", Jekyll::Draft)
31
29
  else
@@ -34,6 +32,7 @@ module CloudCannonJekyll
34
32
  end
35
33
 
36
34
  def read_posts(dir = "")
35
+ # PostReader doesn't exist in old versions of Jekyll
37
36
  if Jekyll::VERSION.start_with? "2."
38
37
  @site.read_content(dir, "_posts", Jekyll::Post)
39
38
  else
@@ -1,18 +1,20 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "jekyll"
3
+ unless Jekyll::VERSION.start_with? "2."
4
+ require "jekyll"
4
5
 
5
- module CloudCannonJekyll
6
- # Reads data files and creates a collections-style hash representation
7
- class DataReader < Jekyll::DataReader
8
- # Determines how to read a data file.
9
- # This is overridden return a hash instead of reading the file.
10
- #
11
- # Returns a hash with the path to the data file.
12
- def read_data_file(path)
13
- {
14
- "path" => path,
15
- }
6
+ module CloudCannonJekyll
7
+ # Reads data files and creates a collections-style hash representation
8
+ class DataReader < Jekyll::DataReader
9
+ # Determines how to read a data file.
10
+ # This is overridden return a hash instead of reading the file.
11
+ #
12
+ # Returns a hash with the path to the data file.
13
+ def read_data_file(path)
14
+ {
15
+ "path" => path,
16
+ }
17
+ end
16
18
  end
17
19
  end
18
20
  end
@@ -1,55 +1,57 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "jekyll"
4
-
5
- module CloudCannonJekyll
6
- # Reads data files and creates a collections-style hash representation
7
- # Aims to replicate the data reading logic in Jekyll 2.5
8
- class OldDataReader
9
- attr_reader :site
10
-
11
- def initialize(site)
12
- @site = site
13
- @safe = site.safe
14
- @content = {}
15
- end
3
+ if Jekyll::VERSION.start_with? "2."
4
+ require "jekyll"
5
+
6
+ module CloudCannonJekyll
7
+ # Reads data files and creates a collections-style hash representation
8
+ # Aims to replicate the data reading logic in Jekyll 2.5
9
+ class OldDataReader
10
+ attr_reader :site
11
+
12
+ def initialize(site)
13
+ @site = site
14
+ @safe = site.safe
15
+ @content = {}
16
+ end
16
17
 
17
- def read(dir)
18
- base = Jekyll.sanitized_path(@site.source, dir)
19
- read_data_to(base, @content)
20
- @content
21
- end
18
+ def read(dir)
19
+ base = Jekyll.sanitized_path(@site.source, dir)
20
+ read_data_to(base, @content)
21
+ @content
22
+ end
22
23
 
23
- def read_data_to(dir, data)
24
- return unless File.directory?(dir) && (!@safe || !File.symlink?(dir))
24
+ def read_data_to(dir, data)
25
+ return unless File.directory?(dir) && (!@safe || !File.symlink?(dir))
25
26
 
26
- entries = Dir.chdir(dir) do
27
- Dir["*.{yaml,yml,json,csv}"] + Dir["*"].select { |fn| File.directory?(fn) }
28
- end
27
+ entries = Dir.chdir(dir) do
28
+ Dir["*.{yaml,yml,json,csv}"] + Dir["*"].select { |fn| File.directory?(fn) }
29
+ end
29
30
 
30
- entries.each do |entry|
31
- path = Jekyll.sanitized_path(dir, entry)
32
- next if File.symlink?(path) && @safe
31
+ entries.each do |entry|
32
+ path = Jekyll.sanitized_path(dir, entry)
33
+ next if File.symlink?(path) && @safe
33
34
 
34
- key = sanitize_filename(File.basename(entry, ".*"))
35
- if File.directory?(path)
36
- read_data_to(path, data[key] = {})
37
- else
38
- data[key] = read_data_file(path)
35
+ key = sanitize_filename(File.basename(entry, ".*"))
36
+ if File.directory?(path)
37
+ read_data_to(path, data[key] = {})
38
+ else
39
+ data[key] = read_data_file(path)
40
+ end
39
41
  end
40
42
  end
41
- end
42
43
 
43
- def read_data_file(path)
44
- {
45
- "path" => path,
46
- }
47
- end
44
+ def read_data_file(path)
45
+ {
46
+ "path" => path,
47
+ }
48
+ end
48
49
 
49
- def sanitize_filename(name)
50
- name.gsub!(%r![^\w\s_-]+!, "")
51
- name.gsub!(%r!(^|\b\s)\s+($|\s?\b)!, '\\1\\2')
52
- name.gsub(%r!\s+!, "_")
50
+ def sanitize_filename(name)
51
+ name.gsub!(%r![^\w\s_-]+!, "")
52
+ name.gsub!(%r!(^|\b\s)\s+($|\s?\b)!, '\\1\\2')
53
+ name.gsub(%r!\s+!, "_")
54
+ end
53
55
  end
54
56
  end
55
57
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CloudCannonJekyll
4
- VERSION = "1.5.2"
4
+ VERSION = "1.5.7"
5
5
  end
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: 1.5.2
4
+ version: 1.5.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - CloudCannon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-11-25 00:00:00.000000000 Z
11
+ date: 2021-01-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll