jekyll 4.2.0 → 4.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (124) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +350 -347
  3. data/LICENSE +21 -21
  4. data/README.markdown +86 -86
  5. data/exe/jekyll +57 -57
  6. data/lib/blank_template/_config.yml +3 -3
  7. data/lib/blank_template/_layouts/default.html +12 -12
  8. data/lib/blank_template/_sass/main.scss +9 -9
  9. data/lib/blank_template/assets/css/main.scss +4 -4
  10. data/lib/blank_template/index.md +8 -8
  11. data/lib/jekyll/cache.rb +190 -190
  12. data/lib/jekyll/cleaner.rb +111 -111
  13. data/lib/jekyll/collection.rb +309 -309
  14. data/lib/jekyll/command.rb +105 -105
  15. data/lib/jekyll/commands/build.rb +93 -93
  16. data/lib/jekyll/commands/clean.rb +45 -45
  17. data/lib/jekyll/commands/doctor.rb +177 -177
  18. data/lib/jekyll/commands/help.rb +34 -34
  19. data/lib/jekyll/commands/new.rb +169 -169
  20. data/lib/jekyll/commands/new_theme.rb +40 -40
  21. data/lib/jekyll/commands/serve/live_reload_reactor.rb +122 -122
  22. data/lib/jekyll/commands/serve/livereload_assets/livereload.js +1183 -1183
  23. data/lib/jekyll/commands/serve/servlet.rb +202 -202
  24. data/lib/jekyll/commands/serve/websockets.rb +81 -81
  25. data/lib/jekyll/commands/serve.rb +362 -365
  26. data/lib/jekyll/configuration.rb +313 -313
  27. data/lib/jekyll/converter.rb +54 -54
  28. data/lib/jekyll/converters/identity.rb +41 -41
  29. data/lib/jekyll/converters/markdown/kramdown_parser.rb +199 -199
  30. data/lib/jekyll/converters/markdown.rb +113 -113
  31. data/lib/jekyll/converters/smartypants.rb +70 -70
  32. data/lib/jekyll/convertible.rb +257 -260
  33. data/lib/jekyll/deprecator.rb +50 -50
  34. data/lib/jekyll/document.rb +544 -544
  35. data/lib/jekyll/drops/collection_drop.rb +20 -20
  36. data/lib/jekyll/drops/document_drop.rb +70 -70
  37. data/lib/jekyll/drops/drop.rb +293 -293
  38. data/lib/jekyll/drops/excerpt_drop.rb +19 -19
  39. data/lib/jekyll/drops/jekyll_drop.rb +32 -32
  40. data/lib/jekyll/drops/site_drop.rb +66 -66
  41. data/lib/jekyll/drops/static_file_drop.rb +14 -14
  42. data/lib/jekyll/drops/unified_payload_drop.rb +26 -26
  43. data/lib/jekyll/drops/url_drop.rb +140 -140
  44. data/lib/jekyll/entry_filter.rb +121 -121
  45. data/lib/jekyll/errors.rb +20 -20
  46. data/lib/jekyll/excerpt.rb +201 -201
  47. data/lib/jekyll/external.rb +79 -79
  48. data/lib/jekyll/filters/date_filters.rb +110 -110
  49. data/lib/jekyll/filters/grouping_filters.rb +64 -64
  50. data/lib/jekyll/filters/url_filters.rb +98 -98
  51. data/lib/jekyll/filters.rb +535 -535
  52. data/lib/jekyll/frontmatter_defaults.rb +240 -240
  53. data/lib/jekyll/generator.rb +5 -5
  54. data/lib/jekyll/hooks.rb +107 -107
  55. data/lib/jekyll/inclusion.rb +32 -32
  56. data/lib/jekyll/layout.rb +67 -67
  57. data/lib/jekyll/liquid_extensions.rb +22 -22
  58. data/lib/jekyll/liquid_renderer/file.rb +77 -77
  59. data/lib/jekyll/liquid_renderer/table.rb +55 -55
  60. data/lib/jekyll/liquid_renderer.rb +80 -80
  61. data/lib/jekyll/log_adapter.rb +151 -151
  62. data/lib/jekyll/mime.types +866 -866
  63. data/lib/jekyll/page.rb +217 -217
  64. data/lib/jekyll/page_excerpt.rb +25 -25
  65. data/lib/jekyll/page_without_a_file.rb +14 -14
  66. data/lib/jekyll/path_manager.rb +74 -74
  67. data/lib/jekyll/plugin.rb +92 -92
  68. data/lib/jekyll/plugin_manager.rb +115 -115
  69. data/lib/jekyll/profiler.rb +58 -58
  70. data/lib/jekyll/publisher.rb +23 -23
  71. data/lib/jekyll/reader.rb +192 -192
  72. data/lib/jekyll/readers/collection_reader.rb +23 -23
  73. data/lib/jekyll/readers/data_reader.rb +79 -79
  74. data/lib/jekyll/readers/layout_reader.rb +62 -62
  75. data/lib/jekyll/readers/page_reader.rb +25 -25
  76. data/lib/jekyll/readers/post_reader.rb +85 -85
  77. data/lib/jekyll/readers/static_file_reader.rb +25 -25
  78. data/lib/jekyll/readers/theme_assets_reader.rb +52 -52
  79. data/lib/jekyll/regenerator.rb +195 -195
  80. data/lib/jekyll/related_posts.rb +52 -52
  81. data/lib/jekyll/renderer.rb +265 -265
  82. data/lib/jekyll/site.rb +551 -551
  83. data/lib/jekyll/static_file.rb +208 -208
  84. data/lib/jekyll/stevenson.rb +60 -60
  85. data/lib/jekyll/tags/highlight.rb +110 -110
  86. data/lib/jekyll/tags/include.rb +275 -270
  87. data/lib/jekyll/tags/link.rb +42 -42
  88. data/lib/jekyll/tags/post_url.rb +106 -106
  89. data/lib/jekyll/theme.rb +86 -86
  90. data/lib/jekyll/theme_builder.rb +121 -121
  91. data/lib/jekyll/url.rb +167 -167
  92. data/lib/jekyll/utils/ansi.rb +57 -57
  93. data/lib/jekyll/utils/exec.rb +26 -26
  94. data/lib/jekyll/utils/internet.rb +37 -37
  95. data/lib/jekyll/utils/platforms.rb +67 -67
  96. data/lib/jekyll/utils/thread_event.rb +31 -31
  97. data/lib/jekyll/utils/win_tz.rb +75 -75
  98. data/lib/jekyll/utils.rb +367 -367
  99. data/lib/jekyll/version.rb +5 -5
  100. data/lib/jekyll.rb +195 -195
  101. data/lib/site_template/.gitignore +5 -5
  102. data/lib/site_template/404.html +25 -25
  103. data/lib/site_template/_config.yml +55 -55
  104. data/lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb +29 -29
  105. data/lib/site_template/about.markdown +18 -18
  106. data/lib/site_template/index.markdown +6 -6
  107. data/lib/theme_template/CODE_OF_CONDUCT.md.erb +74 -74
  108. data/lib/theme_template/Gemfile +4 -4
  109. data/lib/theme_template/LICENSE.txt.erb +21 -21
  110. data/lib/theme_template/README.md.erb +52 -52
  111. data/lib/theme_template/_layouts/default.html +1 -1
  112. data/lib/theme_template/_layouts/page.html +5 -5
  113. data/lib/theme_template/_layouts/post.html +5 -5
  114. data/lib/theme_template/example/_config.yml.erb +1 -1
  115. data/lib/theme_template/example/_post.md +12 -12
  116. data/lib/theme_template/example/index.html +14 -14
  117. data/lib/theme_template/example/style.scss +7 -7
  118. data/lib/theme_template/gitignore.erb +6 -6
  119. data/lib/theme_template/theme.gemspec.erb +16 -16
  120. data/rubocop/jekyll/assert_equal_literal_actual.rb +149 -149
  121. data/rubocop/jekyll/no_p_allowed.rb +23 -23
  122. data/rubocop/jekyll/no_puts_allowed.rb +23 -23
  123. data/rubocop/jekyll.rb +5 -5
  124. metadata +3 -3
@@ -1,260 +1,257 @@
1
- # frozen_string_literal: true
2
-
3
- # Convertible provides methods for converting a pagelike item
4
- # from a certain type of markup into actual content
5
- #
6
- # Requires
7
- # self.site -> Jekyll::Site
8
- # self.content
9
- # self.content=
10
- # self.data=
11
- # self.ext=
12
- # self.output=
13
- # self.name
14
- # self.path
15
- # self.type -> :page, :post or :draft
16
-
17
- module Jekyll
18
- module Convertible
19
- # Returns the contents as a String.
20
- def to_s
21
- content || ""
22
- end
23
-
24
- # Whether the file is published or not, as indicated in YAML front-matter
25
- def published?
26
- !(data.key?("published") && data["published"] == false)
27
- end
28
-
29
- # Read the YAML frontmatter.
30
- #
31
- # base - The String path to the dir containing the file.
32
- # name - The String filename of the file.
33
- # opts - optional parameter to File.read, default at site configs
34
- #
35
- # Returns nothing.
36
- # rubocop:disable Metrics/AbcSize
37
- def read_yaml(base, name, opts = {})
38
- filename = @path || site.in_source_dir(base, name)
39
- Jekyll.logger.debug "Reading:", relative_path
40
-
41
- begin
42
- self.content = File.read(filename, **Utils.merged_file_read_opts(site, opts))
43
- if content =~ Document::YAML_FRONT_MATTER_REGEXP
44
- self.content = Regexp.last_match.post_match
45
- self.data = SafeYAML.load(Regexp.last_match(1))
46
- end
47
- rescue Psych::SyntaxError => e
48
- Jekyll.logger.warn "YAML Exception reading #{filename}: #{e.message}"
49
- raise e if site.config["strict_front_matter"]
50
- rescue StandardError => e
51
- Jekyll.logger.warn "Error reading file #{filename}: #{e.message}"
52
- raise e if site.config["strict_front_matter"]
53
- end
54
-
55
- self.data ||= {}
56
-
57
- validate_data! filename
58
- validate_permalink! filename
59
-
60
- self.data
61
- end
62
- # rubocop:enable Metrics/AbcSize
63
-
64
- def validate_data!(filename)
65
- unless self.data.is_a?(Hash)
66
- raise Errors::InvalidYAMLFrontMatterError,
67
- "Invalid YAML front matter in #{filename}"
68
- end
69
- end
70
-
71
- def validate_permalink!(filename)
72
- if self.data["permalink"] == ""
73
- raise Errors::InvalidPermalinkError, "Invalid permalink in #{filename}"
74
- end
75
- end
76
-
77
- # Transform the contents based on the content type.
78
- #
79
- # Returns the transformed contents.
80
- def transform
81
- renderer.convert(content)
82
- end
83
-
84
- # Determine the extension depending on content_type.
85
- #
86
- # Returns the String extension for the output file.
87
- # e.g. ".html" for an HTML output file.
88
- def output_ext
89
- renderer.output_ext
90
- end
91
-
92
- # Determine which converter to use based on this convertible's
93
- # extension.
94
- #
95
- # Returns the Converter instance.
96
- def converters
97
- renderer.converters
98
- end
99
-
100
- # Render Liquid in the content
101
- #
102
- # content - the raw Liquid content to render
103
- # payload - the payload for Liquid
104
- # info - the info for Liquid
105
- #
106
- # Returns the converted content
107
- def render_liquid(content, payload, info, path)
108
- renderer.render_liquid(content, payload, info, path)
109
- end
110
-
111
- # Convert this Convertible's data to a Hash suitable for use by Liquid.
112
- #
113
- # Returns the Hash representation of this Convertible.
114
- def to_liquid(attrs = nil)
115
- further_data = attribute_hash(attrs || self.class::ATTRIBUTES_FOR_LIQUID)
116
- Utils.deep_merge_hashes defaults, Utils.deep_merge_hashes(data, further_data)
117
- end
118
-
119
- # The type of a document,
120
- # i.e., its classname downcase'd and to_sym'd.
121
- #
122
- # Returns the type of self.
123
- def type
124
- :pages if is_a?(Page)
125
- end
126
-
127
- # returns the owner symbol for hook triggering
128
- def hook_owner
129
- :pages if is_a?(Page)
130
- end
131
-
132
- # Determine whether the document is an asset file.
133
- # Asset files include CoffeeScript files and Sass/SCSS files.
134
- #
135
- # Returns true if the extname belongs to the set of extensions
136
- # that asset files use.
137
- def asset_file?
138
- sass_file? || coffeescript_file?
139
- end
140
-
141
- # Determine whether the document is a Sass file.
142
- #
143
- # Returns true if extname == .sass or .scss, false otherwise.
144
- def sass_file?
145
- Jekyll::Document::SASS_FILE_EXTS.include?(ext)
146
- end
147
-
148
- # Determine whether the document is a CoffeeScript file.
149
- #
150
- # Returns true if extname == .coffee, false otherwise.
151
- def coffeescript_file?
152
- ext == ".coffee"
153
- end
154
-
155
- # Determine whether the file should be rendered with Liquid.
156
- #
157
- # Returns true if the file has Liquid Tags or Variables, false otherwise.
158
- def render_with_liquid?
159
- return false if data["render_with_liquid"] == false
160
-
161
- Jekyll::Utils.has_liquid_construct?(content)
162
- end
163
-
164
- # Determine whether the file should be placed into layouts.
165
- #
166
- # Returns false if the document is an asset file or if the front matter
167
- # specifies `layout: none`
168
- def place_in_layout?
169
- !(asset_file? || no_layout?)
170
- end
171
-
172
- # Checks if the layout specified in the document actually exists
173
- #
174
- # layout - the layout to check
175
- #
176
- # Returns true if the layout is invalid, false if otherwise
177
- def invalid_layout?(layout)
178
- !data["layout"].nil? && layout.nil? && !(is_a? Jekyll::Excerpt)
179
- end
180
-
181
- # Recursively render layouts
182
- #
183
- # layouts - a list of the layouts
184
- # payload - the payload for Liquid
185
- # info - the info for Liquid
186
- #
187
- # Returns nothing
188
- def render_all_layouts(layouts, payload, info)
189
- renderer.layouts = layouts
190
- self.output = renderer.place_in_layouts(output, payload, info)
191
- ensure
192
- @renderer = nil # this will allow the modifications above to disappear
193
- end
194
-
195
- # Add any necessary layouts to this convertible document.
196
- #
197
- # payload - The site payload Drop or Hash.
198
- # layouts - A Hash of {"name" => "layout"}.
199
- #
200
- # Returns nothing.
201
- def do_layout(payload, layouts)
202
- self.output = renderer.tap do |doc_renderer|
203
- doc_renderer.layouts = layouts
204
- doc_renderer.payload = payload
205
- end.run
206
-
207
- Jekyll.logger.debug "Post-Render Hooks:", relative_path
208
- Jekyll::Hooks.trigger hook_owner, :post_render, self
209
- ensure
210
- @renderer = nil # this will allow the modifications above to disappear
211
- end
212
-
213
- # Write the generated page file to the destination directory.
214
- #
215
- # dest - The String path to the destination dir.
216
- #
217
- # Returns nothing.
218
- def write(dest)
219
- path = destination(dest)
220
- FileUtils.mkdir_p(File.dirname(path))
221
- Jekyll.logger.debug "Writing:", path
222
- File.write(path, output, :mode => "wb")
223
- Jekyll::Hooks.trigger hook_owner, :post_write, self
224
- end
225
-
226
- # Accessor for data properties by Liquid.
227
- #
228
- # property - The String name of the property to retrieve.
229
- #
230
- # Returns the String value or nil if the property isn't included.
231
- def [](property)
232
- if self.class::ATTRIBUTES_FOR_LIQUID.include?(property)
233
- send(property)
234
- else
235
- data[property]
236
- end
237
- end
238
-
239
- def renderer
240
- @renderer ||= Jekyll::Renderer.new(site, self)
241
- end
242
-
243
- private
244
-
245
- def defaults
246
- @defaults ||= site.frontmatter_defaults.all(relative_path, type)
247
- end
248
-
249
- def attribute_hash(attrs)
250
- @attribute_hash ||= {}
251
- @attribute_hash[attrs] ||= attrs.each_with_object({}) do |attribute, hsh|
252
- hsh[attribute] = send(attribute)
253
- end
254
- end
255
-
256
- def no_layout?
257
- data["layout"] == "none"
258
- end
259
- end
260
- end
1
+ # frozen_string_literal: true
2
+
3
+ # Convertible provides methods for converting a pagelike item
4
+ # from a certain type of markup into actual content
5
+ #
6
+ # Requires
7
+ # self.site -> Jekyll::Site
8
+ # self.content
9
+ # self.content=
10
+ # self.data=
11
+ # self.ext=
12
+ # self.output=
13
+ # self.name
14
+ # self.path
15
+ # self.type -> :page, :post or :draft
16
+
17
+ module Jekyll
18
+ module Convertible
19
+ # Returns the contents as a String.
20
+ def to_s
21
+ content || ""
22
+ end
23
+
24
+ # Whether the file is published or not, as indicated in YAML front-matter
25
+ def published?
26
+ !(data.key?("published") && data["published"] == false)
27
+ end
28
+
29
+ # Read the YAML frontmatter.
30
+ #
31
+ # base - The String path to the dir containing the file.
32
+ # name - The String filename of the file.
33
+ # opts - optional parameter to File.read, default at site configs
34
+ #
35
+ # Returns nothing.
36
+ # rubocop:disable Metrics/AbcSize
37
+ def read_yaml(base, name, opts = {})
38
+ filename = @path || site.in_source_dir(base, name)
39
+ Jekyll.logger.debug "Reading:", relative_path
40
+
41
+ begin
42
+ self.content = File.read(filename, **Utils.merged_file_read_opts(site, opts))
43
+ if content =~ Document::YAML_FRONT_MATTER_REGEXP
44
+ self.content = Regexp.last_match.post_match
45
+ self.data = SafeYAML.load(Regexp.last_match(1))
46
+ end
47
+ rescue Psych::SyntaxError => e
48
+ Jekyll.logger.warn "YAML Exception reading #{filename}: #{e.message}"
49
+ raise e if site.config["strict_front_matter"]
50
+ rescue StandardError => e
51
+ Jekyll.logger.warn "Error reading file #{filename}: #{e.message}"
52
+ raise e if site.config["strict_front_matter"]
53
+ end
54
+
55
+ self.data ||= {}
56
+
57
+ validate_data! filename
58
+ validate_permalink! filename
59
+
60
+ self.data
61
+ end
62
+ # rubocop:enable Metrics/AbcSize
63
+
64
+ def validate_data!(filename)
65
+ unless self.data.is_a?(Hash)
66
+ raise Errors::InvalidYAMLFrontMatterError,
67
+ "Invalid YAML front matter in #{filename}"
68
+ end
69
+ end
70
+
71
+ def validate_permalink!(filename)
72
+ if self.data["permalink"] == ""
73
+ raise Errors::InvalidPermalinkError, "Invalid permalink in #{filename}"
74
+ end
75
+ end
76
+
77
+ # Transform the contents based on the content type.
78
+ #
79
+ # Returns the transformed contents.
80
+ def transform
81
+ renderer.convert(content)
82
+ end
83
+
84
+ # Determine the extension depending on content_type.
85
+ #
86
+ # Returns the String extension for the output file.
87
+ # e.g. ".html" for an HTML output file.
88
+ def output_ext
89
+ renderer.output_ext
90
+ end
91
+
92
+ # Determine which converter to use based on this convertible's
93
+ # extension.
94
+ #
95
+ # Returns the Converter instance.
96
+ def converters
97
+ renderer.converters
98
+ end
99
+
100
+ # Render Liquid in the content
101
+ #
102
+ # content - the raw Liquid content to render
103
+ # payload - the payload for Liquid
104
+ # info - the info for Liquid
105
+ #
106
+ # Returns the converted content
107
+ def render_liquid(content, payload, info, path)
108
+ renderer.render_liquid(content, payload, info, path)
109
+ end
110
+
111
+ # Convert this Convertible's data to a Hash suitable for use by Liquid.
112
+ #
113
+ # Returns the Hash representation of this Convertible.
114
+ def to_liquid(attrs = nil)
115
+ further_data = \
116
+ (attrs || self.class::ATTRIBUTES_FOR_LIQUID).each_with_object({}) do |attribute, hsh|
117
+ hsh[attribute] = send(attribute)
118
+ end
119
+
120
+ Utils.deep_merge_hashes defaults, Utils.deep_merge_hashes(data, further_data)
121
+ end
122
+
123
+ # The type of a document,
124
+ # i.e., its classname downcase'd and to_sym'd.
125
+ #
126
+ # Returns the type of self.
127
+ def type
128
+ :pages if is_a?(Page)
129
+ end
130
+
131
+ # returns the owner symbol for hook triggering
132
+ def hook_owner
133
+ :pages if is_a?(Page)
134
+ end
135
+
136
+ # Determine whether the document is an asset file.
137
+ # Asset files include CoffeeScript files and Sass/SCSS files.
138
+ #
139
+ # Returns true if the extname belongs to the set of extensions
140
+ # that asset files use.
141
+ def asset_file?
142
+ sass_file? || coffeescript_file?
143
+ end
144
+
145
+ # Determine whether the document is a Sass file.
146
+ #
147
+ # Returns true if extname == .sass or .scss, false otherwise.
148
+ def sass_file?
149
+ Jekyll::Document::SASS_FILE_EXTS.include?(ext)
150
+ end
151
+
152
+ # Determine whether the document is a CoffeeScript file.
153
+ #
154
+ # Returns true if extname == .coffee, false otherwise.
155
+ def coffeescript_file?
156
+ ext == ".coffee"
157
+ end
158
+
159
+ # Determine whether the file should be rendered with Liquid.
160
+ #
161
+ # Returns true if the file has Liquid Tags or Variables, false otherwise.
162
+ def render_with_liquid?
163
+ return false if data["render_with_liquid"] == false
164
+
165
+ Jekyll::Utils.has_liquid_construct?(content)
166
+ end
167
+
168
+ # Determine whether the file should be placed into layouts.
169
+ #
170
+ # Returns false if the document is an asset file or if the front matter
171
+ # specifies `layout: none`
172
+ def place_in_layout?
173
+ !(asset_file? || no_layout?)
174
+ end
175
+
176
+ # Checks if the layout specified in the document actually exists
177
+ #
178
+ # layout - the layout to check
179
+ #
180
+ # Returns true if the layout is invalid, false if otherwise
181
+ def invalid_layout?(layout)
182
+ !data["layout"].nil? && layout.nil? && !(is_a? Jekyll::Excerpt)
183
+ end
184
+
185
+ # Recursively render layouts
186
+ #
187
+ # layouts - a list of the layouts
188
+ # payload - the payload for Liquid
189
+ # info - the info for Liquid
190
+ #
191
+ # Returns nothing
192
+ def render_all_layouts(layouts, payload, info)
193
+ renderer.layouts = layouts
194
+ self.output = renderer.place_in_layouts(output, payload, info)
195
+ ensure
196
+ @renderer = nil # this will allow the modifications above to disappear
197
+ end
198
+
199
+ # Add any necessary layouts to this convertible document.
200
+ #
201
+ # payload - The site payload Drop or Hash.
202
+ # layouts - A Hash of {"name" => "layout"}.
203
+ #
204
+ # Returns nothing.
205
+ def do_layout(payload, layouts)
206
+ self.output = renderer.tap do |doc_renderer|
207
+ doc_renderer.layouts = layouts
208
+ doc_renderer.payload = payload
209
+ end.run
210
+
211
+ Jekyll.logger.debug "Post-Render Hooks:", relative_path
212
+ Jekyll::Hooks.trigger hook_owner, :post_render, self
213
+ ensure
214
+ @renderer = nil # this will allow the modifications above to disappear
215
+ end
216
+
217
+ # Write the generated page file to the destination directory.
218
+ #
219
+ # dest - The String path to the destination dir.
220
+ #
221
+ # Returns nothing.
222
+ def write(dest)
223
+ path = destination(dest)
224
+ FileUtils.mkdir_p(File.dirname(path))
225
+ Jekyll.logger.debug "Writing:", path
226
+ File.write(path, output, :mode => "wb")
227
+ Jekyll::Hooks.trigger hook_owner, :post_write, self
228
+ end
229
+
230
+ # Accessor for data properties by Liquid.
231
+ #
232
+ # property - The String name of the property to retrieve.
233
+ #
234
+ # Returns the String value or nil if the property isn't included.
235
+ def [](property)
236
+ if self.class::ATTRIBUTES_FOR_LIQUID.include?(property)
237
+ send(property)
238
+ else
239
+ data[property]
240
+ end
241
+ end
242
+
243
+ def renderer
244
+ @renderer ||= Jekyll::Renderer.new(site, self)
245
+ end
246
+
247
+ private
248
+
249
+ def defaults
250
+ @defaults ||= site.frontmatter_defaults.all(relative_path, type)
251
+ end
252
+
253
+ def no_layout?
254
+ data["layout"] == "none"
255
+ end
256
+ end
257
+ end
@@ -1,50 +1,50 @@
1
- # frozen_string_literal: true
2
-
3
- module Jekyll
4
- module Deprecator
5
- extend self
6
-
7
- def process(args)
8
- arg_is_present? args, "--server", "The --server command has been replaced by the \
9
- 'serve' subcommand."
10
- arg_is_present? args, "--serve", "The --serve command has been replaced by the \
11
- 'serve' subcommand."
12
- arg_is_present? args, "--no-server", "To build Jekyll without launching a server, \
13
- use the 'build' subcommand."
14
- arg_is_present? args, "--auto", "The switch '--auto' has been replaced with \
15
- '--watch'."
16
- arg_is_present? args, "--no-auto", "To disable auto-replication, simply leave off \
17
- the '--watch' switch."
18
- arg_is_present? args, "--pygments", "The 'pygments'settings has been removed in \
19
- favour of 'highlighter'."
20
- arg_is_present? args, "--paginate", "The 'paginate' setting can only be set in \
21
- your config files."
22
- arg_is_present? args, "--url", "The 'url' setting can only be set in your \
23
- config files."
24
- no_subcommand(args)
25
- end
26
-
27
- def no_subcommand(args)
28
- unless args.empty? ||
29
- args.first !~ %r(!/^--/!) || %w(--help --version).include?(args.first)
30
- deprecation_message "Jekyll now uses subcommands instead of just switches. \
31
- Run `jekyll help` to find out more."
32
- abort
33
- end
34
- end
35
-
36
- def arg_is_present?(args, deprecated_argument, message)
37
- deprecation_message(message) if args.include?(deprecated_argument)
38
- end
39
-
40
- def deprecation_message(message)
41
- Jekyll.logger.warn "Deprecation:", message
42
- end
43
-
44
- def defaults_deprecate_type(old, current)
45
- Jekyll.logger.warn "Defaults:", "The '#{old}' type has become '#{current}'."
46
- Jekyll.logger.warn "Defaults:", "Please update your front-matter defaults to use \
47
- 'type: #{current}'."
48
- end
49
- end
50
- end
1
+ # frozen_string_literal: true
2
+
3
+ module Jekyll
4
+ module Deprecator
5
+ extend self
6
+
7
+ def process(args)
8
+ arg_is_present? args, "--server", "The --server command has been replaced by the \
9
+ 'serve' subcommand."
10
+ arg_is_present? args, "--serve", "The --serve command has been replaced by the \
11
+ 'serve' subcommand."
12
+ arg_is_present? args, "--no-server", "To build Jekyll without launching a server, \
13
+ use the 'build' subcommand."
14
+ arg_is_present? args, "--auto", "The switch '--auto' has been replaced with \
15
+ '--watch'."
16
+ arg_is_present? args, "--no-auto", "To disable auto-replication, simply leave off \
17
+ the '--watch' switch."
18
+ arg_is_present? args, "--pygments", "The 'pygments'settings has been removed in \
19
+ favour of 'highlighter'."
20
+ arg_is_present? args, "--paginate", "The 'paginate' setting can only be set in \
21
+ your config files."
22
+ arg_is_present? args, "--url", "The 'url' setting can only be set in your \
23
+ config files."
24
+ no_subcommand(args)
25
+ end
26
+
27
+ def no_subcommand(args)
28
+ unless args.empty? ||
29
+ args.first !~ %r(!/^--/!) || %w(--help --version).include?(args.first)
30
+ deprecation_message "Jekyll now uses subcommands instead of just switches. \
31
+ Run `jekyll help` to find out more."
32
+ abort
33
+ end
34
+ end
35
+
36
+ def arg_is_present?(args, deprecated_argument, message)
37
+ deprecation_message(message) if args.include?(deprecated_argument)
38
+ end
39
+
40
+ def deprecation_message(message)
41
+ Jekyll.logger.warn "Deprecation:", message
42
+ end
43
+
44
+ def defaults_deprecate_type(old, current)
45
+ Jekyll.logger.warn "Defaults:", "The '#{old}' type has become '#{current}'."
46
+ Jekyll.logger.warn "Defaults:", "Please update your front-matter defaults to use \
47
+ 'type: #{current}'."
48
+ end
49
+ end
50
+ end