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.
Files changed (3) hide show
  1. checksums.yaml +4 -4
  2. data/lib/jemoji_plus.rb +6 -6
  3. metadata +5 -5
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 31cec7192cbe42400c68489b0e5466ad497b3f9d003549347ee16704cafd4a39
4
- data.tar.gz: 8b553091c59991d9ee6f0d7050e26eaca0cbf4eb668fe7d61fcab58118fcafce
3
+ metadata.gz: a351ce7c6cc403a6a030e6b247dc7e6bf04678543d9c11fa697e75bfafd5ff06
4
+ data.tar.gz: a38db1e29b24b2d63ce12990bc587b4f86cd028268d3d6da54f2b8704d5698fe
5
5
  SHA512:
6
- metadata.gz: 2aecf5bc4fcd0bce21e16ff2b798640975bff33cabf3982124126dadb3aeebe17ef154ac85506f1a1e6774d2555b3c74fc2cebd459bfa8585762de3c6105d44b
7
- data.tar.gz: 9afce46b379fedbf47fdf8917eab04d52f9773a3f9fb79777b60e95898b6d0ed6bb75284c58bfcf048d5286ec602dc82869de2b2422f9c72018fb98b9853782e
6
+ metadata.gz: 13c12a0e5f464907c74a1121217c237ba3bc646490dfe350047b1323a63bbe01f3f7a321e92e381f0a67ae8796ee66f8ed27c4aa997883adb9491d21c7c11824
7
+ data.tar.gz: b31de423976cf8d2980a447a6c9fdd6a2afece104b23a9a481af6e2de8136331eb46137dc2930049ad4dfc4edfd54a19ee2c665f653bf609e462720259584b4b
@@ -2,10 +2,10 @@
2
2
 
3
3
  require "jekyll"
4
4
  require "gemoji"
5
- require "html/pipeline_plus"
5
+ require "html/pipeline"
6
6
 
7
7
  module Jekyll
8
- class Emoji
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?("jemoji_plus") && config["jemoji_plus"].key?("host") && config["jemoji_plus"].key?("path")
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["jemoji_plus"]["host"].chomp("/")
75
+ asset_host_url = config["emoji-plus"]["host"].chomp("/")
76
76
  # Ensure [asset_path] is start with "/".
77
- asset_path = config["jemoji_plus"]["path"]
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::Emoji.emojify(doc) if Jekyll::Emoji.emojiable?(doc)
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.11
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: 2019-02-18 00:00:00.000000000 Z
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-plus
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.10.7
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.10.7
40
+ version: '2.2'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: jekyll
43
43
  requirement: !ruby/object:Gem::Requirement