jekyll 4.2.1 → 4.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 +4 -4
- data/.rubocop.yml +474 -350
- data/LICENSE +21 -21
- data/README.markdown +83 -86
- data/exe/jekyll +57 -57
- data/lib/blank_template/_config.yml +3 -3
- data/lib/blank_template/_layouts/default.html +12 -12
- data/lib/blank_template/_sass/main.scss +9 -9
- data/lib/blank_template/assets/css/main.scss +4 -4
- data/lib/blank_template/index.md +8 -8
- data/lib/jekyll/cache.rb +186 -190
- data/lib/jekyll/cleaner.rb +111 -111
- data/lib/jekyll/collection.rb +310 -309
- data/lib/jekyll/command.rb +105 -105
- data/lib/jekyll/commands/build.rb +82 -93
- data/lib/jekyll/commands/clean.rb +44 -45
- data/lib/jekyll/commands/doctor.rb +177 -177
- data/lib/jekyll/commands/help.rb +34 -34
- data/lib/jekyll/commands/new.rb +168 -169
- data/lib/jekyll/commands/new_theme.rb +39 -40
- data/lib/jekyll/commands/serve/live_reload_reactor.rb +119 -122
- data/lib/jekyll/commands/serve/livereload_assets/livereload.js +1183 -1183
- data/lib/jekyll/commands/serve/mime_types_charset.json +71 -0
- data/lib/jekyll/commands/serve/servlet.rb +206 -202
- data/lib/jekyll/commands/serve/websockets.rb +81 -81
- data/lib/jekyll/commands/serve.rb +367 -362
- data/lib/jekyll/configuration.rb +313 -313
- data/lib/jekyll/converter.rb +54 -54
- data/lib/jekyll/converters/identity.rb +41 -41
- data/lib/jekyll/converters/markdown/kramdown_parser.rb +197 -199
- data/lib/jekyll/converters/markdown.rb +113 -113
- data/lib/jekyll/converters/smartypants.rb +70 -70
- data/lib/jekyll/convertible.rb +257 -257
- data/lib/jekyll/data_entry.rb +83 -0
- data/lib/jekyll/data_hash.rb +61 -0
- data/lib/jekyll/deprecator.rb +50 -50
- data/lib/jekyll/document.rb +543 -544
- data/lib/jekyll/drops/collection_drop.rb +20 -20
- data/lib/jekyll/drops/document_drop.rb +71 -70
- data/lib/jekyll/drops/drop.rb +293 -293
- data/lib/jekyll/drops/excerpt_drop.rb +23 -19
- data/lib/jekyll/drops/jekyll_drop.rb +32 -32
- data/lib/jekyll/drops/site_drop.rb +71 -66
- data/lib/jekyll/drops/static_file_drop.rb +14 -14
- data/lib/jekyll/drops/theme_drop.rb +36 -0
- data/lib/jekyll/drops/unified_payload_drop.rb +30 -26
- data/lib/jekyll/drops/url_drop.rb +140 -140
- data/lib/jekyll/entry_filter.rb +117 -121
- data/lib/jekyll/errors.rb +20 -20
- data/lib/jekyll/excerpt.rb +200 -201
- data/lib/jekyll/external.rb +75 -79
- data/lib/jekyll/filters/date_filters.rb +110 -110
- data/lib/jekyll/filters/grouping_filters.rb +64 -64
- data/lib/jekyll/filters/url_filters.rb +98 -98
- data/lib/jekyll/filters.rb +532 -535
- data/lib/jekyll/frontmatter_defaults.rb +238 -240
- data/lib/jekyll/generator.rb +5 -5
- data/lib/jekyll/hooks.rb +107 -107
- data/lib/jekyll/inclusion.rb +32 -32
- data/lib/jekyll/layout.rb +55 -67
- data/lib/jekyll/liquid_extensions.rb +22 -22
- data/lib/jekyll/liquid_renderer/file.rb +77 -77
- data/lib/jekyll/liquid_renderer/table.rb +55 -55
- data/lib/jekyll/liquid_renderer.rb +80 -80
- data/lib/jekyll/log_adapter.rb +151 -151
- data/lib/jekyll/mime.types +939 -866
- data/lib/jekyll/page.rb +215 -217
- data/lib/jekyll/page_excerpt.rb +25 -25
- data/lib/jekyll/page_without_a_file.rb +14 -14
- data/lib/jekyll/path_manager.rb +74 -74
- data/lib/jekyll/plugin.rb +92 -92
- data/lib/jekyll/plugin_manager.rb +123 -115
- data/lib/jekyll/profiler.rb +55 -58
- data/lib/jekyll/publisher.rb +23 -23
- data/lib/jekyll/reader.rb +209 -192
- data/lib/jekyll/readers/collection_reader.rb +23 -23
- data/lib/jekyll/readers/data_reader.rb +116 -79
- data/lib/jekyll/readers/layout_reader.rb +62 -62
- data/lib/jekyll/readers/page_reader.rb +25 -25
- data/lib/jekyll/readers/post_reader.rb +85 -85
- data/lib/jekyll/readers/static_file_reader.rb +25 -25
- data/lib/jekyll/readers/theme_assets_reader.rb +52 -52
- data/lib/jekyll/regenerator.rb +195 -195
- data/lib/jekyll/related_posts.rb +52 -52
- data/lib/jekyll/renderer.rb +263 -265
- data/lib/jekyll/site.rb +582 -551
- data/lib/jekyll/static_file.rb +205 -208
- data/lib/jekyll/stevenson.rb +60 -60
- data/lib/jekyll/tags/highlight.rb +114 -110
- data/lib/jekyll/tags/include.rb +275 -275
- data/lib/jekyll/tags/link.rb +42 -42
- data/lib/jekyll/tags/post_url.rb +106 -106
- data/lib/jekyll/theme.rb +90 -86
- data/lib/jekyll/theme_builder.rb +121 -121
- data/lib/jekyll/url.rb +167 -167
- data/lib/jekyll/utils/ansi.rb +57 -57
- data/lib/jekyll/utils/exec.rb +26 -26
- data/lib/jekyll/utils/internet.rb +37 -37
- data/lib/jekyll/utils/platforms.rb +67 -67
- data/lib/jekyll/utils/thread_event.rb +31 -31
- data/lib/jekyll/utils/win_tz.rb +46 -75
- data/lib/jekyll/utils.rb +378 -367
- data/lib/jekyll/version.rb +5 -5
- data/lib/jekyll.rb +197 -195
- data/lib/site_template/.gitignore +5 -5
- data/lib/site_template/404.html +25 -25
- data/lib/site_template/_config.yml +55 -55
- data/lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb +29 -29
- data/lib/site_template/about.markdown +18 -18
- data/lib/site_template/index.markdown +6 -6
- data/lib/theme_template/CODE_OF_CONDUCT.md.erb +74 -74
- data/lib/theme_template/Gemfile +4 -4
- data/lib/theme_template/LICENSE.txt.erb +21 -21
- data/lib/theme_template/README.md.erb +50 -52
- data/lib/theme_template/_layouts/default.html +1 -1
- data/lib/theme_template/_layouts/page.html +5 -5
- data/lib/theme_template/_layouts/post.html +5 -5
- data/lib/theme_template/example/_config.yml.erb +1 -1
- data/lib/theme_template/example/_post.md +12 -12
- data/lib/theme_template/example/index.html +14 -14
- data/lib/theme_template/example/style.scss +7 -7
- data/lib/theme_template/gitignore.erb +6 -6
- data/lib/theme_template/theme.gemspec.erb +16 -16
- data/rubocop/jekyll/assert_equal_literal_actual.rb +149 -149
- data/rubocop/jekyll/no_p_allowed.rb +23 -23
- data/rubocop/jekyll/no_puts_allowed.rb +23 -23
- data/rubocop/jekyll.rb +5 -5
- metadata +62 -14
data/lib/jekyll/deprecator.rb
CHANGED
|
@@ -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
|