jekyll-emoji 0.1.6 → 1.0.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.
- checksums.yaml +4 -4
- data/README.md +11 -0
- data/lib/jekyll/emoji/converter.rb +4 -4
- data/lib/jekyll/emoji/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e21f68f040cf360b4cb9ac5e601a30db9c54f88
|
4
|
+
data.tar.gz: b430b0eae115e70eec3baa20f02d364cada97930
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c3c0832d999dcadfeacbc455e7f0b797a498c10f5e2c18168494afdc8fc0b6bdd0e48a3500a2e20539c520f55ef924368c9d524f1a0ec4217f0f3f1da6f362c
|
7
|
+
data.tar.gz: 14b02dad2be79485f2c789b93bd818fc24dddfde44c32e48f382ba3c45cf8af3078e9038c6cf605d2855b9176e15674e6112f651f48c10ff56b23b2f2e5e7f33
|
data/README.md
CHANGED
@@ -96,3 +96,14 @@ It was <3></3> at first sight!
|
|
96
96
|
## License
|
97
97
|
|
98
98
|
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
99
|
+
|
100
|
+
### Emoji One License
|
101
|
+
|
102
|
+
If you use `emojione-png`, or ` emojione-svg`, note that the artwork is licensed under under a CC-BY-SA 4.0 International license, and you're required to include the following attribution:
|
103
|
+
|
104
|
+
~~~markdown
|
105
|
+
[Emoji One artwork][emojione] is licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License][cc-by-sa].
|
106
|
+
|
107
|
+
[emojione]: http://emojione.com/
|
108
|
+
[cc-by-sa]: http://creativecommons.org/licenses/by-sa/4.0/
|
109
|
+
~~~
|
@@ -187,8 +187,8 @@ module Jekyll
|
|
187
187
|
# conv = Converter.new()
|
188
188
|
# conv.add_shortname_alias(":wink:", '1F609')
|
189
189
|
#
|
190
|
-
# @param [String]
|
191
|
-
# @param [String]
|
190
|
+
# @param [String] emoji_alias
|
191
|
+
# @param [String] codepoints
|
192
192
|
# @return [FalseClass|TrueClass]
|
193
193
|
#
|
194
194
|
def add_shortname_alias(emoji_alias, codepoints)
|
@@ -209,8 +209,8 @@ module Jekyll
|
|
209
209
|
# conv = Converter.new()
|
210
210
|
# conv.add_shortname_alias(";-)", '1F609')
|
211
211
|
#
|
212
|
-
# @param [String]
|
213
|
-
# @param [String]
|
212
|
+
# @param [String] emoji_alias
|
213
|
+
# @param [String] codepoints
|
214
214
|
# @return [FalseClass|TrueClass]
|
215
215
|
#
|
216
216
|
def add_ascii_alias(emoji_alias, codepoints)
|
data/lib/jekyll/emoji/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-emoji
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nino Miletich
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -152,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
152
152
|
version: '0'
|
153
153
|
requirements: []
|
154
154
|
rubyforge_project:
|
155
|
-
rubygems_version: 2.4.
|
155
|
+
rubygems_version: 2.4.8
|
156
156
|
signing_key:
|
157
157
|
specification_version: 4
|
158
158
|
summary: Adds support for emojis to Jekyll
|