jekyll 3.4.5 → 3.5.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.
Potentially problematic release.
This version of jekyll might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.rubocop.yml +38 -30
- data/exe/jekyll +2 -2
- data/lib/jekyll/collection.rb +2 -2
- data/lib/jekyll/command.rb +5 -0
- data/lib/jekyll/commands/new.rb +1 -1
- data/lib/jekyll/commands/serve.rb +7 -6
- data/lib/jekyll/configuration.rb +64 -42
- data/lib/jekyll/converter.rb +2 -2
- data/lib/jekyll/convertible.rb +5 -3
- data/lib/jekyll/document.rb +61 -44
- data/lib/jekyll/drops/site_drop.rb +4 -0
- data/lib/jekyll/entry_filter.rb +2 -1
- data/lib/jekyll/errors.rb +5 -4
- data/lib/jekyll/external.rb +14 -1
- data/lib/jekyll/filters.rb +23 -21
- data/lib/jekyll/filters/grouping_filters.rb +1 -1
- data/lib/jekyll/filters/url_filters.rb +22 -4
- data/lib/jekyll/hooks.rb +1 -1
- data/lib/jekyll/liquid_renderer/table.rb +2 -2
- data/lib/jekyll/page.rb +1 -1
- data/lib/jekyll/plugin.rb +1 -1
- data/lib/jekyll/plugin_manager.rb +19 -7
- data/lib/jekyll/reader.rb +1 -0
- data/lib/jekyll/readers/data_reader.rb +8 -2
- data/lib/jekyll/readers/theme_assets_reader.rb +1 -1
- data/lib/jekyll/renderer.rb +113 -66
- data/lib/jekyll/site.rb +5 -1
- data/lib/jekyll/tags/post_url.rb +1 -1
- data/lib/jekyll/theme.rb +4 -0
- data/lib/jekyll/url.rb +1 -8
- data/lib/jekyll/utils/win_tz.rb +2 -2
- data/lib/jekyll/version.rb +1 -1
- data/lib/site_template/404.html +24 -0
- data/lib/site_template/_config.yml +13 -4
- data/lib/site_template/about.md +7 -4
- metadata +5 -4
data/lib/site_template/about.md
CHANGED
@@ -6,10 +6,13 @@ permalink: /about/
|
|
6
6
|
|
7
7
|
This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](https://jekyllrb.com/)
|
8
8
|
|
9
|
-
You can find the source code for
|
10
|
-
|
9
|
+
You can find the source code for Minima at GitHub:
|
10
|
+
[jekyll][jekyll-organization] /
|
11
11
|
[minima](https://github.com/jekyll/minima)
|
12
12
|
|
13
|
-
You can find the source code for Jekyll at
|
14
|
-
|
13
|
+
You can find the source code for Jekyll at GitHub:
|
14
|
+
[jekyll][jekyll-organization] /
|
15
15
|
[jekyll](https://github.com/jekyll/jekyll)
|
16
|
+
|
17
|
+
|
18
|
+
[jekyll-organization]: https://github.com/jekyll
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tom Preston-Werner
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-06-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|
@@ -86,14 +86,14 @@ dependencies:
|
|
86
86
|
requirements:
|
87
87
|
- - "~>"
|
88
88
|
- !ruby/object:Gem::Version
|
89
|
-
version: '
|
89
|
+
version: '4.0'
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
|
-
version: '
|
96
|
+
version: '4.0'
|
97
97
|
- !ruby/object:Gem::Dependency
|
98
98
|
name: mercenary
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
@@ -244,6 +244,7 @@ files:
|
|
244
244
|
- lib/jekyll/utils/win_tz.rb
|
245
245
|
- lib/jekyll/version.rb
|
246
246
|
- lib/site_template/.gitignore
|
247
|
+
- lib/site_template/404.html
|
247
248
|
- lib/site_template/_config.yml
|
248
249
|
- lib/site_template/_posts/0000-00-00-welcome-to-jekyll.markdown.erb
|
249
250
|
- lib/site_template/about.md
|