unicode-emoji 2.3.1 → 2.4.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/.travis.yml +10 -7
- data/CHANGELOG.md +4 -0
- data/Gemfile +1 -1
- data/MIT-LICENSE.txt +1 -1
- data/README.md +7 -5
- data/data/emoji.marshal.gz +0 -0
- data/lib/unicode/.emoji.rb.swp +0 -0
- data/lib/unicode/emoji/constants.rb +4 -3
- data/spec/unicode_emoji_spec.rb +5 -0
- data/unicode-emoji.gemspec +2 -2
- metadata +8 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 01370a115b3b6135d1b2d495ed25ccc9f2bebec4b27d171f567ea7c134facc24
|
4
|
+
data.tar.gz: b50bb761b4c556588bed13622e3926734f471f773648e033640bd274e450147f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ecebc5a3f30904d12bb8170d44f596577a40a5895393448359d7fa6c52d3b0a83fab12d8da3ec708f76313b1a3286b4a7b23a415076f1b9c58468ad364576e57
|
7
|
+
data.tar.gz: 72071ac2532ddab99aaac5fd9c61ad2f4047c3ab8428e6b9995f607d0f020c0596283291d3a43de00eb5e78d90f089ed8b563ec22c77adaa65e6016fd3908501
|
data/.travis.yml
CHANGED
@@ -2,16 +2,19 @@ sudo: false
|
|
2
2
|
language: ruby
|
3
3
|
|
4
4
|
rvm:
|
5
|
-
- 2.
|
6
|
-
- 2.
|
7
|
-
- 2.
|
8
|
-
- 2.
|
5
|
+
- 2.7
|
6
|
+
- 2.6
|
7
|
+
- 2.5
|
8
|
+
- 2.4
|
9
|
+
- 2.3
|
9
10
|
- ruby-head
|
10
|
-
- jruby-
|
11
|
-
-
|
11
|
+
- jruby-9.2.9.0
|
12
|
+
- truffleruby
|
12
13
|
|
13
14
|
matrix:
|
14
15
|
allow_failures:
|
15
|
-
- rvm:
|
16
|
+
- rvm: 2.3
|
16
17
|
- rvm: ruby-head
|
18
|
+
- rvm: jruby-2.9.2.0
|
19
|
+
- rvm: truffleruby
|
17
20
|
# fast_finish: true
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
data/MIT-LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -1,14 +1,16 @@
|
|
1
1
|
# Unicode::Emoji [![[version]](https://badge.fury.io/rb/unicode-emoji.svg)](https://badge.fury.io/rb/unicode-emoji) [![[travis]](https://travis-ci.org/janlelis/unicode-emoji.svg)](https://travis-ci.org/janlelis/unicode-emoji)
|
2
2
|
|
3
|
-
A small Ruby library which provides Unicode Emoji data and regexes.
|
3
|
+
A small Ruby library which provides Unicode Emoji data and regexes, incorporating the latest Unicode and Emoji standards.
|
4
4
|
|
5
5
|
Also includes a categorized list of recommended Emoji.
|
6
6
|
|
7
|
-
Emoji version: **
|
7
|
+
Emoji version: **13.0** (January 2019)
|
8
8
|
|
9
9
|
CLDR version (used for sub-region flags): **36** (October 2019)
|
10
10
|
|
11
|
-
Supported Rubies: **2.
|
11
|
+
Supported Rubies: **2.7**, **2.6**, **2.5**, **2.4**
|
12
|
+
|
13
|
+
No longer supported Rubies, but might still work: **2.3**
|
12
14
|
|
13
15
|
If you are stuck on an older Ruby version, checkout the latest [0.9 version](https://rubygems.org/gems/unicode-emoji/versions/0.9.3) of this gem.
|
14
16
|
|
@@ -129,7 +131,7 @@ A list of all Emoji can be found at [character.construction](https://character.c
|
|
129
131
|
|
130
132
|
### Properties
|
131
133
|
|
132
|
-
Allows you to access the codepoint data form Unicode's [emoji-data.txt](https://unicode.org/Public/
|
134
|
+
Allows you to access the codepoint data form Unicode's [emoji-data.txt](https://www.unicode.org/Public/13.0.0/ucd/emoji/emoji-data.txt) file:
|
133
135
|
|
134
136
|
```ruby
|
135
137
|
require "unicode/emoji"
|
@@ -146,5 +148,5 @@ Unicode::Emoji.properties "☝" # => ["Emoji", "Emoji_Modifier_Base"]
|
|
146
148
|
|
147
149
|
## MIT
|
148
150
|
|
149
|
-
- Copyright (C) 2017-
|
151
|
+
- Copyright (C) 2017-2020 Jan Lelis <https://janlelis.com>. Released under the MIT license.
|
150
152
|
- Unicode data: https://www.unicode.org/copyright.html#Exhibit1
|
data/data/emoji.marshal.gz
CHANGED
Binary file
|
Binary file
|
@@ -2,13 +2,14 @@
|
|
2
2
|
|
3
3
|
module Unicode
|
4
4
|
module Emoji
|
5
|
-
VERSION = "2.
|
6
|
-
EMOJI_VERSION = "
|
5
|
+
VERSION = "2.4.0"
|
6
|
+
EMOJI_VERSION = "13.0"
|
7
7
|
CLDR_VERSION = "36"
|
8
8
|
DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + "/../../../data/").freeze
|
9
9
|
INDEX_FILENAME = (DATA_DIRECTORY + "/emoji.marshal.gz").freeze
|
10
10
|
|
11
|
-
ENABLE_NATIVE_EMOJI_UNICODE_PROPERTIES = false
|
11
|
+
ENABLE_NATIVE_EMOJI_UNICODE_PROPERTIES = false
|
12
|
+
# As of Ruby 2.7.0, Emoji version 12.1 is included
|
12
13
|
end
|
13
14
|
end
|
14
15
|
|
data/spec/unicode_emoji_spec.rb
CHANGED
@@ -93,6 +93,11 @@ describe Unicode::Emoji do
|
|
93
93
|
"🧑🦱 person: curly hair" =~ Unicode::Emoji::REGEX
|
94
94
|
assert_equal "🧑🦱", $&
|
95
95
|
end
|
96
|
+
|
97
|
+
it "matches 13.0 emoji" do
|
98
|
+
"👨🍼 man feeding baby" =~ Unicode::Emoji::REGEX
|
99
|
+
assert_equal "👨🍼", $&
|
100
|
+
end
|
96
101
|
end
|
97
102
|
|
98
103
|
describe "REGEX_VALID" do
|
data/unicode-emoji.gemspec
CHANGED
@@ -6,9 +6,9 @@ Gem::Specification.new do |gem|
|
|
6
6
|
gem.name = "unicode-emoji"
|
7
7
|
gem.version = Unicode::Emoji::VERSION
|
8
8
|
gem.summary = "Retrieve Emoji data about Unicode codepoints."
|
9
|
-
gem.description = "[Emoji #{Unicode::Emoji::EMOJI_VERSION}]
|
9
|
+
gem.description = "[Emoji #{Unicode::Emoji::EMOJI_VERSION}] A small Ruby library which provides Unicode Emoji data and regexes, incorporating the latest Unicode and Emoji standards. Includes a categorized list of recommended Emoji."
|
10
10
|
gem.authors = ["Jan Lelis"]
|
11
|
-
gem.email = ["
|
11
|
+
gem.email = ["hi@ruby.consulting"]
|
12
12
|
gem.homepage = "https://github.com/janlelis/unicode-emoji"
|
13
13
|
gem.license = "MIT"
|
14
14
|
|
metadata
CHANGED
@@ -1,19 +1,20 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unicode-emoji
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.4.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: 2020-02-01 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description: "[Emoji
|
14
|
-
|
13
|
+
description: "[Emoji 13.0] A small Ruby library which provides Unicode Emoji data
|
14
|
+
and regexes, incorporating the latest Unicode and Emoji standards. Includes a categorized
|
15
|
+
list of recommended Emoji."
|
15
16
|
email:
|
16
|
-
-
|
17
|
+
- hi@ruby.consulting
|
17
18
|
executables: []
|
18
19
|
extensions: []
|
19
20
|
extra_rdoc_files: []
|
@@ -28,6 +29,7 @@ files:
|
|
28
29
|
- README.md
|
29
30
|
- Rakefile
|
30
31
|
- data/emoji.marshal.gz
|
32
|
+
- lib/unicode/.emoji.rb.swp
|
31
33
|
- lib/unicode/emoji.rb
|
32
34
|
- lib/unicode/emoji/constants.rb
|
33
35
|
- lib/unicode/emoji/index.rb
|
@@ -52,7 +54,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
52
54
|
- !ruby/object:Gem::Version
|
53
55
|
version: '0'
|
54
56
|
requirements: []
|
55
|
-
rubygems_version: 3.
|
57
|
+
rubygems_version: 3.1.2
|
56
58
|
signing_key:
|
57
59
|
specification_version: 4
|
58
60
|
summary: Retrieve Emoji data about Unicode codepoints.
|