unicode-emoji 2.7.1 → 2.8.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/CHANGELOG.md +4 -0
- data/MIT-LICENSE.txt +1 -1
- data/README.md +4 -4
- data/Rakefile +1 -1
- data/data/emoji.marshal.gz +0 -0
- data/lib/unicode/emoji/constants.rb +2 -2
- metadata +3 -4
- data/.travis.yml +0 -19
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7aa0991308dd22c0d643200e52d609b611c393cc73b2a161eca83bddbf435daa
|
|
4
|
+
data.tar.gz: 7c9f5561da128d4d343f20e10334eae973f753da50fe798206cdaf27c0815029
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a84bb7293e52d559bc940105b3ffaf8b511263e6e3adffbe7d204c75d25eb8bca8a3b3ea4d30d27e9b15a65f9cc26397077ce3fc6b861e7d67f19e3320cb636
|
|
7
|
+
data.tar.gz: 185520969e9222d295b7768c458ce546d9e0ffb190eb802ea58052c46f300204cedf94d4a6c37cfc92bdb1266694fd244fb8f6009b4b074f24681213827d5a2d
|
data/CHANGELOG.md
CHANGED
data/MIT-LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Unicode::Emoji [![[version]](https://badge.fury.io/rb/unicode-emoji.svg)](https://badge.fury.io/rb/unicode-emoji) [![[
|
|
1
|
+
# Unicode::Emoji [![[version]](https://badge.fury.io/rb/unicode-emoji.svg)](https://badge.fury.io/rb/unicode-emoji) [![[ci]](https://github.com/janlelis/unicode-emoji/workflows/Test/badge.svg)](https://github.com/janlelis/unicode-emoji/actions?query=workflow%3ATest)
|
|
2
2
|
|
|
3
3
|
Provides Unicode Emoji data and regexes, incorporating the latest Unicode and Emoji standards.
|
|
4
4
|
|
|
@@ -6,9 +6,9 @@ Also includes a categorized list of recommended Emoji.
|
|
|
6
6
|
|
|
7
7
|
Emoji version: **13.1** (September 2020)
|
|
8
8
|
|
|
9
|
-
CLDR version (used for sub-region flags): **
|
|
9
|
+
CLDR version (used for sub-region flags): **39** (April 2021)
|
|
10
10
|
|
|
11
|
-
Supported Rubies: **2.7**, **2.6**, **2.5** (also latest JRuby and TruffleRuby stable)
|
|
11
|
+
Supported Rubies: **3.0**, **2.7**, **2.6**, **2.5** (also latest JRuby and TruffleRuby stable)
|
|
12
12
|
|
|
13
13
|
No longer supported Rubies, but might still work: **2.4**, **2.3**
|
|
14
14
|
|
|
@@ -148,5 +148,5 @@ Unicode::Emoji.properties "☝" # => ["Emoji", "Emoji_Modifier_Base"]
|
|
|
148
148
|
|
|
149
149
|
## MIT
|
|
150
150
|
|
|
151
|
-
- Copyright (C) 2017-
|
|
151
|
+
- Copyright (C) 2017-2021 Jan Lelis <https://janlelis.com>. Released under the MIT license.
|
|
152
152
|
- Unicode data: https://www.unicode.org/copyright.html#Exhibit1
|
data/Rakefile
CHANGED
data/data/emoji.marshal.gz
CHANGED
|
Binary file
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
module Unicode
|
|
4
4
|
module Emoji
|
|
5
|
-
VERSION = "2.
|
|
5
|
+
VERSION = "2.8.0"
|
|
6
6
|
EMOJI_VERSION = "13.1"
|
|
7
|
-
CLDR_VERSION = "
|
|
7
|
+
CLDR_VERSION = "39"
|
|
8
8
|
DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + "/../../../data/").freeze
|
|
9
9
|
INDEX_FILENAME = (DATA_DIRECTORY + "/emoji.marshal.gz").freeze
|
|
10
10
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: unicode-emoji
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.
|
|
4
|
+
version: 2.8.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jan Lelis
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-04-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: unicode-version
|
|
@@ -34,7 +34,6 @@ extensions: []
|
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
36
|
- ".gitignore"
|
|
37
|
-
- ".travis.yml"
|
|
38
37
|
- CHANGELOG.md
|
|
39
38
|
- CODE_OF_CONDUCT.md
|
|
40
39
|
- Gemfile
|
|
@@ -70,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
70
69
|
- !ruby/object:Gem::Version
|
|
71
70
|
version: '0'
|
|
72
71
|
requirements: []
|
|
73
|
-
rubygems_version: 3.
|
|
72
|
+
rubygems_version: 3.2.3
|
|
74
73
|
signing_key:
|
|
75
74
|
specification_version: 4
|
|
76
75
|
summary: Retrieve Emoji data about Unicode codepoints.
|
data/.travis.yml
DELETED