jekyll 4.3.3 → 4.3.4
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/README.markdown +1 -2
- data/lib/jekyll/commands/doctor.rb +1 -1
- data/lib/jekyll/commands/new.rb +1 -1
- data/lib/jekyll/drops/theme_drop.rb +4 -1
- data/lib/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: 36a2e136e304048a4cd7cc196e2aed55eb12f143e9132181462ded47f80973b1
|
|
4
|
+
data.tar.gz: a3f4d3438d8ba9179740dacc2eb89ecc7d0770927a1628fc2ac410010bea0c7b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c37c4db936253fd9307605f04af32d0a869839699b3056bae5dab4f1941ee7016e8d520f77f20a5d45026424fee68ff070e3029b81b4b0aafc0835cf4fe92528
|
|
7
|
+
data.tar.gz: 0437ed64aa93cd10d3c751897bdf52b5de2d1d50bd52282588cee37a86d9a56d13fdad0ee32bfabb55336dcb5b2796c13857d9870700d071043869eb188e5711
|
data/README.markdown
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
# [Jekyll](https://jekyllrb.com/)
|
|
2
2
|
|
|
3
3
|
[][ruby-gems]
|
|
4
|
-
[][appveyor]
|
|
4
|
+
[][ci-workflow]
|
|
6
5
|
[](#backers)
|
|
7
6
|
[](#sponsors)
|
|
8
7
|
|
|
@@ -88,7 +88,7 @@ module Jekyll
|
|
|
88
88
|
Jekyll.logger.error <<~STR
|
|
89
89
|
We have detected that there might be trouble using fsevent on your
|
|
90
90
|
operating system, you can read https://github.com/thibaudgg/rb-fsevent/wiki/no-fsevents-fired-(OSX-bug)
|
|
91
|
-
for possible
|
|
91
|
+
for possible workarounds or you can work around it immediately
|
|
92
92
|
with `--force-polling`.
|
|
93
93
|
STR
|
|
94
94
|
|
data/lib/jekyll/commands/new.rb
CHANGED
|
@@ -97,7 +97,7 @@ module Jekyll
|
|
|
97
97
|
end
|
|
98
98
|
|
|
99
99
|
# Performance-booster for watching directories on Windows
|
|
100
|
-
gem "wdm", "~> 0.1
|
|
100
|
+
gem "wdm", "~> 0.1", :platforms => [:mingw, :x64_mingw, :mswin]
|
|
101
101
|
|
|
102
102
|
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
|
|
103
103
|
# do not have a Java counterpart.
|
|
@@ -3,9 +3,12 @@
|
|
|
3
3
|
module Jekyll
|
|
4
4
|
module Drops
|
|
5
5
|
class ThemeDrop < Drop
|
|
6
|
-
delegate_methods :root
|
|
7
6
|
delegate_method_as :runtime_dependencies, :dependencies
|
|
8
7
|
|
|
8
|
+
def root
|
|
9
|
+
@root ||= ENV["JEKYLL_ENV"] == "development" ? @obj.root : ""
|
|
10
|
+
end
|
|
11
|
+
|
|
9
12
|
def authors
|
|
10
13
|
@authors ||= gemspec.authors.join(", ")
|
|
11
14
|
end
|
data/lib/jekyll/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.3.
|
|
4
|
+
version: 4.3.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tom Preston-Werner
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: exe
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2024-09-16 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: addressable
|