jemoji-plus 0.1.11 → 0.1.12
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/lib/jemoji_plus.rb +6 -6
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a351ce7c6cc403a6a030e6b247dc7e6bf04678543d9c11fa697e75bfafd5ff06
|
|
4
|
+
data.tar.gz: a38db1e29b24b2d63ce12990bc587b4f86cd028268d3d6da54f2b8704d5698fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 13c12a0e5f464907c74a1121217c237ba3bc646490dfe350047b1323a63bbe01f3f7a321e92e381f0a67ae8796ee66f8ed27c4aa997883adb9491d21c7c11824
|
|
7
|
+
data.tar.gz: b31de423976cf8d2980a447a6c9fdd6a2afece104b23a9a481af6e2de8136331eb46137dc2930049ad4dfc4edfd54a19ee2c665f653bf609e462720259584b4b
|
data/lib/jemoji_plus.rb
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
require "jekyll"
|
|
4
4
|
require "gemoji"
|
|
5
|
-
require "html/
|
|
5
|
+
require "html/pipeline"
|
|
6
6
|
|
|
7
7
|
module Jekyll
|
|
8
|
-
class
|
|
8
|
+
class Emoji_Plus
|
|
9
9
|
ASSET_HOST = "https://github.githubassets.com"
|
|
10
10
|
ASSET_PATH = "/images/icons/"
|
|
11
11
|
BODY_START_TAG = "<body"
|
|
@@ -51,7 +51,7 @@ module Jekyll
|
|
|
51
51
|
# URL for assets provided by an ASSET_HOST environment variable,
|
|
52
52
|
# otherwise the root URL for emoji assets at assets-cdn.github.com.
|
|
53
53
|
def emoji_src(config = {})
|
|
54
|
-
if config.key?("
|
|
54
|
+
if config.key?("emoji-plus") && config["emoji-plus"].key?("host") && config["emoji-plus"].key?("path")
|
|
55
55
|
config_asset_root(config)
|
|
56
56
|
else
|
|
57
57
|
default_asset_root
|
|
@@ -72,9 +72,9 @@ module Jekyll
|
|
|
72
72
|
|
|
73
73
|
def config_asset_root(config)
|
|
74
74
|
# Ensure that any trailing "/" is trimmed.
|
|
75
|
-
asset_host_url = config["
|
|
75
|
+
asset_host_url = config["emoji-plus"]["host"].chomp("/")
|
|
76
76
|
# Ensure [asset_path] is start with "/".
|
|
77
|
-
asset_path = config["
|
|
77
|
+
asset_path = config["emoji-plus"]["path"]
|
|
78
78
|
if !asset_path.start_with?("/")
|
|
79
79
|
"#{asset_host_url}/#{asset_path}"
|
|
80
80
|
else
|
|
@@ -111,5 +111,5 @@ module Jekyll
|
|
|
111
111
|
end
|
|
112
112
|
|
|
113
113
|
Jekyll::Hooks.register [:pages, :documents], :post_render do |doc|
|
|
114
|
-
Jekyll::
|
|
114
|
+
Jekyll::Emoji_Plus.emojify(doc) if Jekyll::Emoji_Plus.emojiable?(doc)
|
|
115
115
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jemoji-plus
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- shines77 and GitHub, Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-06-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: gemoji
|
|
@@ -25,19 +25,19 @@ dependencies:
|
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '3.0'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: html-pipeline
|
|
28
|
+
name: html-pipeline
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 2.
|
|
33
|
+
version: '2.2'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 2.
|
|
40
|
+
version: '2.2'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: jekyll
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|