jekyll-theme-assets-updated 2.3 → 2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/jekyll-theme-assets-updated.rb +7 -8
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a91966be8cc2a24fc55fa3b6f72b4529f3d33c1ba0e1e4bd2e45b4c9b62c2cee
|
4
|
+
data.tar.gz: c8bb867db9dcf1cb1aa1d6b744ab281b95c82c7bdc3ef7cbbc4b193215c79e82
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 443a6e61bba9a8847ac88a6c5624b1b1b51171b8f9d9f433762bdc58bf20db43b88f246639a61e53054d2eaa508b17b66d960a2f31a26420a47e7a7a9c38d248
|
7
|
+
data.tar.gz: f278a56dd7bb1759e45433d6f2913d474257352791038b3ae2335894666885f29ffadd418291f442a7181b9055d732aaa89ba9e7b05372b2ad065e1135498d74
|
@@ -3,14 +3,13 @@ require 'theme'
|
|
3
3
|
|
4
4
|
# Jekyll Assets hook to discover and register assets of a gem-based Jekyll theme.
|
5
5
|
Jekyll::Assets::Hook.register :env, :before_init do
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
end
|
6
|
+
# Nothing to do if there is no theme
|
7
|
+
unless jekyll.theme
|
8
|
+
# fetch from theme's "assets" folder
|
9
|
+
fetch_theme_assets(jekyll.theme.public_assets_path)
|
10
|
+
# fetch from theme's "_assets" folder
|
11
|
+
fetch_theme_assets(jekyll.theme.private_assets_path)
|
12
|
+
end
|
14
13
|
end
|
15
14
|
|
16
15
|
private
|