unicode-emoji 4.0.0 โ 4.0.4
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 +47 -34
- data/Gemfile.lock +1 -3
- data/README.md +3 -2
- data/data/generate_constants.rb +1 -0
- data/lib/unicode/emoji/constants.rb +2 -2
- data/lib/unicode/emoji/generated/regex_text_presentation.rb +8 -0
- data/lib/unicode/emoji/generated_native/regex_text_presentation.rb +8 -0
- data/lib/unicode/emoji.rb +2 -3
- data/unicode-emoji.gemspec +1 -3
- metadata +5 -19
- data/spec/data/emoji-test.txt +0 -5331
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3b08d6adaddfcbca3e754c9a52a0c0d5c772da86ca708affc9799ad113c5a005
|
|
4
|
+
data.tar.gz: e9f3817a215ef38b7933d69b4f0563d848a03f6a6b8728ecd06a74417fb5f8a7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cedad0ceb5f1039be614bbca170cccc3f29e8f05bd7fc74714ed586ddf20edb5da25a6c8fd840acfb7dfbeb918ec6e2218cf427e5e510eb2406235253e32ad74
|
|
7
|
+
data.tar.gz: 4680b526737abd7491351ff87c5d323f3a6acf5996dffa4c2f4737e10bc8083da16928dbab34362b6014ae5a17863266eb456ab2d382f25350339eaf71a175bf
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,19 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
## 4.0.4
|
|
4
|
+
|
|
5
|
+
- Add `REGEX_TEXT_PRESENTATION` to be able to match for raw default-text Emoji codepoints
|
|
6
|
+
|
|
7
|
+
## 4.0.3
|
|
8
|
+
|
|
9
|
+
- Remove emoji-test.txt from Rubygems package
|
|
10
|
+
|
|
11
|
+
## 4.0.2
|
|
12
|
+
|
|
13
|
+
- Directly use `RbConfig::CONFIG["UNICODE_EMOJI_VERSION"]` to detect Ruby's Emoji version,
|
|
14
|
+
drop unicode-version dependency
|
|
15
|
+
|
|
16
|
+
## 4.0.0
|
|
4
17
|
|
|
5
18
|
- **Breaking change:** Regexes now include single skin tone modifiers (`๐ป`) and hair components (`๐ฆฐ`).
|
|
6
19
|
They were previously considered to be invalid partial Emoji, however since they are supposed to be
|
|
@@ -13,7 +26,7 @@
|
|
|
13
26
|
- Add `REGEX_EMOJI_KEYCAP` for matching specifically Emoji keycaps
|
|
14
27
|
- Use character class instead of lookbehind for native text emoji and non-emoji pictographic regexes
|
|
15
28
|
|
|
16
|
-
|
|
29
|
+
## 3.8.0
|
|
17
30
|
|
|
18
31
|
- Add new RGI-based regexes `REGEX_INCLUDE_MQE` and `REGEX_INCLUDE_MQE_UQE` which allows to match
|
|
19
32
|
for minimally-qualified and unqualified RGI sequences (Emoji that lack some VS16)
|
|
@@ -23,7 +36,7 @@
|
|
|
23
36
|
- Update CLDR to v46 (valid subdivisions)
|
|
24
37
|
- Further improvements (see commit log)
|
|
25
38
|
|
|
26
|
-
|
|
39
|
+
## 3.7.0
|
|
27
40
|
|
|
28
41
|
- Bump required Ruby slightly to 2.5
|
|
29
42
|
- Introduce new `REGEX_POSSIBLE` which contains the regex described in
|
|
@@ -36,46 +49,46 @@
|
|
|
36
49
|
- Separately autoload emoji list, so it can be loaded when other indexes
|
|
37
50
|
are not needed
|
|
38
51
|
|
|
39
|
-
|
|
52
|
+
## 3.6.0
|
|
40
53
|
|
|
41
54
|
- `Unicode::Emoji::REGEX_TEXT` now matches non-emoji keycaps like "3โฃ" (U+0033 U+20E3)
|
|
42
55
|
- Minor refactorings
|
|
43
56
|
|
|
44
|
-
|
|
57
|
+
## 3.5.0
|
|
45
58
|
|
|
46
59
|
- Emoji 16.0
|
|
47
60
|
|
|
48
|
-
|
|
61
|
+
## 3.4.0
|
|
49
62
|
|
|
50
63
|
- Emoji 15.1
|
|
51
64
|
|
|
52
|
-
|
|
65
|
+
## 3.3.2
|
|
53
66
|
|
|
54
67
|
- Update valid subdivisions to CLDR 43 (no changes)
|
|
55
68
|
-> there won't be any new RGI subdivision flags in Emoji
|
|
56
69
|
|
|
57
|
-
|
|
70
|
+
## 3.3.1
|
|
58
71
|
|
|
59
72
|
- Update valid subdivisions to CLDR 42 (no changes)
|
|
60
73
|
|
|
61
|
-
|
|
74
|
+
## 3.3.0
|
|
62
75
|
|
|
63
76
|
- Emoji 15.0
|
|
64
77
|
|
|
65
|
-
|
|
78
|
+
## 3.2.0
|
|
66
79
|
|
|
67
80
|
- Update valid subdivisions to CLDR 41
|
|
68
81
|
|
|
69
|
-
|
|
82
|
+
## 3.1.1
|
|
70
83
|
|
|
71
84
|
- Fix `REGEX` to be able to match complete family emoji, instead of
|
|
72
85
|
sub-matching partial families, thanks @matt17r
|
|
73
86
|
|
|
74
|
-
|
|
87
|
+
## 3.1.0
|
|
75
88
|
|
|
76
89
|
- Update valid subdivisions to CLDR 40
|
|
77
90
|
|
|
78
|
-
|
|
91
|
+
## 3.0.0
|
|
79
92
|
|
|
80
93
|
- Vastly improve memory usage, patch by @radarek
|
|
81
94
|
- Emoji regexes are now pre-generated and bundled with the release
|
|
@@ -83,54 +96,54 @@
|
|
|
83
96
|
- Most constants (e.g. regexes) now get autoloaded
|
|
84
97
|
- See https://github.com/janlelis/unicode-emoji/pull/9 for more details
|
|
85
98
|
|
|
86
|
-
|
|
99
|
+
## 2.9.0
|
|
87
100
|
|
|
88
101
|
- Emoji 14.0
|
|
89
102
|
|
|
90
|
-
|
|
103
|
+
## 2.8.0
|
|
91
104
|
|
|
92
105
|
- Update valid subdivisions to CLDR 39
|
|
93
106
|
|
|
94
|
-
|
|
107
|
+
## 2.7.1
|
|
95
108
|
|
|
96
109
|
- Update valid subdivisions to CLDR 38.1
|
|
97
110
|
|
|
98
|
-
|
|
111
|
+
## 2.7.0
|
|
99
112
|
|
|
100
113
|
- Update valid subdivisions to CLDR 38
|
|
101
114
|
- Loosen Ruby dependency to allow Ruby 3.0
|
|
102
115
|
|
|
103
|
-
|
|
116
|
+
## 2.6.0
|
|
104
117
|
|
|
105
118
|
- Emoji 13.1
|
|
106
119
|
|
|
107
|
-
|
|
120
|
+
## 2.5.0
|
|
108
121
|
|
|
109
122
|
- Use native Emoji regex properties when current Ruby's Emoji support is the same as our current Emoji version
|
|
110
123
|
- Update valid subdivisions to CLDR 37
|
|
111
124
|
|
|
112
|
-
|
|
125
|
+
## 2.4.0
|
|
113
126
|
|
|
114
127
|
- Emoji 13.0
|
|
115
128
|
|
|
116
|
-
|
|
129
|
+
## 2.3.1
|
|
117
130
|
|
|
118
131
|
- Fix index to actually include Emoji 12.1
|
|
119
132
|
|
|
120
|
-
|
|
133
|
+
## 2.3.0
|
|
121
134
|
|
|
122
135
|
- Emoji 12.1
|
|
123
136
|
|
|
124
|
-
|
|
137
|
+
## 2.2.0
|
|
125
138
|
|
|
126
139
|
- Update subdivisions to CLDR 36
|
|
127
140
|
|
|
128
|
-
|
|
141
|
+
## 2.1.0
|
|
129
142
|
|
|
130
143
|
- Add `REGEX_PICTO` which matches codepoints with the **Extended_Pictographic** property
|
|
131
144
|
- Add `REGEX_PICTO_NO_EMOJI` which matches codepoints with the **Extended_Pictographic** property, but no **Emoji** property
|
|
132
145
|
|
|
133
|
-
|
|
146
|
+
## 2.0.0
|
|
134
147
|
|
|
135
148
|
- Emoji 12.0 data (including valid subdivisions)
|
|
136
149
|
- Introduce new `REGEX_WELL_FORMED` to be able to match for invalid tag and region sequences
|
|
@@ -139,40 +152,40 @@
|
|
|
139
152
|
- Issue warning when using `#list` method to retrieve outdated category
|
|
140
153
|
- Change matching for ZWJ sequences: Do not limit sequence to a maximum of 3 ZWJs
|
|
141
154
|
|
|
142
|
-
|
|
155
|
+
## 1.1.0
|
|
143
156
|
|
|
144
157
|
- Emoji 11.0
|
|
145
158
|
- Do not depend on rubygems (only use zlib stdlib for unzipping)
|
|
146
159
|
|
|
147
|
-
|
|
160
|
+
## 1.0.3
|
|
148
161
|
|
|
149
162
|
- Explicitly load rubygems/util, fixes regression in 1.2.1
|
|
150
163
|
|
|
151
|
-
|
|
164
|
+
## 1.0.2
|
|
152
165
|
|
|
153
166
|
- Use `Gem::Util` for `gunzip`, removes deprecation warning
|
|
154
167
|
|
|
155
|
-
|
|
168
|
+
## 1.0.1
|
|
156
169
|
|
|
157
170
|
- Actually set required Ruby version to 2.3 in gemspec
|
|
158
171
|
|
|
159
|
-
|
|
172
|
+
## 1.0.0
|
|
160
173
|
|
|
161
174
|
- Drop support for Ruby below 2.3, use 0.9 if you need to
|
|
162
175
|
- Internal refactorings, no API change
|
|
163
176
|
|
|
164
|
-
|
|
177
|
+
## 0.9.3
|
|
165
178
|
|
|
166
179
|
- Implement native Emoji regex matchers, but do not activate or document, yet
|
|
167
180
|
|
|
168
|
-
|
|
181
|
+
## 0.9.2
|
|
169
182
|
|
|
170
183
|
- REGEX_TEXT: Do not match if the text emoji is followed by a emoji modifier
|
|
171
184
|
|
|
172
|
-
|
|
185
|
+
## 0.9.1
|
|
173
186
|
|
|
174
187
|
- Include a categorized list of recommended Emoji
|
|
175
188
|
|
|
176
|
-
|
|
189
|
+
## 0.9.0
|
|
177
190
|
|
|
178
191
|
- Initial release (Emoji version 5.0)
|
data/Gemfile.lock
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
unicode-emoji (4.0.
|
|
5
|
-
unicode-version (~> 1.0)
|
|
4
|
+
unicode-emoji (4.0.4)
|
|
6
5
|
|
|
7
6
|
GEM
|
|
8
7
|
remote: https://rubygems.org/
|
|
@@ -20,7 +19,6 @@ GEM
|
|
|
20
19
|
reline (0.3.8)
|
|
21
20
|
io-console (~> 0.5)
|
|
22
21
|
stringio (3.0.8)
|
|
23
|
-
unicode-version (1.4.0)
|
|
24
22
|
|
|
25
23
|
PLATFORMS
|
|
26
24
|
ruby
|
data/README.md
CHANGED
|
@@ -37,7 +37,7 @@ string = "String which contains all types of Emoji sequences:
|
|
|
37
37
|
- Sequence using ZWJ (zero width joiner): ๐คพ๐ฝโโ๏ธ
|
|
38
38
|
"
|
|
39
39
|
|
|
40
|
-
string.scan(Unicode::Emoji::REGEX) # => ["๐ด", "โถ๏ธ", "๐๐ฝ", "๐ต๐น", "๐ด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ", "2๏ธโฃ", "๐คพ๐ฝโโ๏ธ"]
|
|
40
|
+
string.scan(Unicode::Emoji::REGEX) # => ["๐ด", "โถ๏ธ", "๐๐ฝ", "๐ต๐น", "๐ด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ", "2๏ธโฃ", "๐ป", "๐คพ๐ฝโโ๏ธ"]
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
Depending on your exact usecase, you can choose between multiple levels of Emoji detection:
|
|
@@ -79,7 +79,7 @@ Regex | Description | Example Matches | Example Non-Matc
|
|
|
79
79
|
`Unicode::Emoji::REGEX_BASIC` | Matches (non-textual) Basic Emoji, but no sequences at all | `๐ด`, `โถ๏ธ`, `๐ป` | `๐ด๏ธ`, `โถ`, `๐๐ฝ`, `๐ต๐น`, `๐ต๐ต`,`2๏ธโฃ`, `๐ด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ`, `๐ด๓ ง๓ ข๓ ก๓ ง๓ ข๓ ฟ`, `๐คพ๐ฝโโ๏ธ`, `๐คพ๐ฝโโ`, `๐โโ๏ธ`, `๐ค โ๐คข`, `1`
|
|
80
80
|
`Unicode::Emoji::REGEX_TEXT` | Matches only textual singleton Emoji | `๐ด๏ธ`, `โถ` | `๐ด`, `โถ๏ธ`, `๐ป`, `๐๐ฝ`, `๐ต๐น`, `๐ต๐ต`,`2๏ธโฃ`, `๐ด๓ ง๓ ข๓ ณ๓ ฃ๓ ด๓ ฟ`, `๐ด๓ ง๓ ข๓ ก๓ ง๓ ข๓ ฟ`, `๐คพ๐ฝโโ๏ธ`, `๐คพ๐ฝโโ`, `๐โโ๏ธ`, `๐ค โ๐คข`, `1`
|
|
81
81
|
|
|
82
|
-
Here is a list of all Emoji that can be matched using the two regexes: [character.construction/emoji-vs-text](https://character.construction/emoji-vs-text). The `REGEX_BASIC` regex also matches visual Emoji components (skin tone modifiers and hair components).
|
|
82
|
+
Here is a list of all Emoji that can be matched using the two regexes: [character.construction/emoji-vs-text](https://character.construction/emoji-vs-text). The `REGEX_BASIC` regex also matches [visual Emoji components](https://character.construction/emoji-components) (skin tone modifiers and hair components).
|
|
83
83
|
|
|
84
84
|
While `REGEX_BASIC` is part of the above regexes, `REGEX_TEXT` is only included in the `*_INCLUDE_TEXT` or `*_UQE` variants.
|
|
85
85
|
|
|
@@ -153,6 +153,7 @@ Gem Regex (`Unicode::Emoji`'s Emoji support level) | Native Regex (Ruby's Emoji
|
|
|
153
153
|
`Unicode::Emoji::REGEX_PROP_MODIFIER_BASE` | `/\p{EBase}/`
|
|
154
154
|
`Unicode::Emoji::REGEX_PROP_COMPONENT` | `/\p{EComp}/`
|
|
155
155
|
`Unicode::Emoji::REGEX_PROP_PRESENTATION` | `/\p{EPres}/`
|
|
156
|
+
`Unicode::Emoji::REGEX_TEXT_PRESENTATION` | `/[\p{Emoji}&&\P{EPres}]/`
|
|
156
157
|
|
|
157
158
|
#### Extended Pictographic Regex
|
|
158
159
|
|
data/data/generate_constants.rb
CHANGED
|
@@ -300,6 +300,7 @@ def compile(emoji_character:, emoji_modifier:, emoji_modifier_base:, emoji_compo
|
|
|
300
300
|
|
|
301
301
|
# Matches only basic single, textual emoji, ignores components like modifiers or simple digits
|
|
302
302
|
regexes[:REGEX_TEXT] = Regexp.compile(text_emoji)
|
|
303
|
+
regexes[:REGEX_TEXT_PRESENTATION] = Regexp.compile(text_presentation)
|
|
303
304
|
|
|
304
305
|
# Export regexes for Emoji properties so they can be used with newer Unicode than Ruby's
|
|
305
306
|
regexes[:REGEX_PROP_EMOJI] = Regexp.compile(emoji_character)
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
module Unicode
|
|
4
4
|
module Emoji
|
|
5
|
-
VERSION = "4.0.
|
|
5
|
+
VERSION = "4.0.4"
|
|
6
6
|
EMOJI_VERSION = "16.0"
|
|
7
7
|
CLDR_VERSION = "46"
|
|
8
8
|
DATA_DIRECTORY = File.expand_path('../../../data', __dir__).freeze
|
|
@@ -44,6 +44,6 @@ module Unicode
|
|
|
44
44
|
|
|
45
45
|
# The current list of Emoji components that should have a visual representation
|
|
46
46
|
# Currently skin tone modifiers + hair components
|
|
47
|
-
VISUAL_COMPONENT = [*0x1F3FB..0x1F3FF, *0x1F9B0..0x1F9B3]
|
|
47
|
+
VISUAL_COMPONENT = [*0x1F3FB..0x1F3FF, *0x1F9B0..0x1F9B3].freeze
|
|
48
48
|
end
|
|
49
49
|
end
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
# This file was generated by a script, please do not edit it by hand.
|
|
2
|
+
# See `$ rake generate_constants` and data/generate_constants.rb for more info.
|
|
3
|
+
|
|
4
|
+
module Unicode
|
|
5
|
+
module Emoji
|
|
6
|
+
REGEX_TEXT_PRESENTATION = /[\#\*0-9ยฉยฎโผโโขโนโ-โโฉโชโจโโญ-โฏโฑโฒโธ-โบโโชโซโถโโปโผโ-โโโโโโ โขโฃโฆโชโฎโฏโธ-โบโโโโ โฃโฅโฆโจโปโพโโ-โโโโโ โงโฐโฑโโโโโฉโฐโฑโดโท-โนโโโโโโโโโโโกโณโดโโโฃโคโกโคดโคตโฌ
-โฌใฐใฝใใ๐
ฐ๐
ฑ๐
พ๐
ฟ๐๐ท๐ก๐ค-๐ฌ๐ถ๐ฝ๐๐๐-๐๐๐๐-๐๐-๐๐ณ๐ต๐ท๐ฟ๐๐ฝ๐๐๐ฏ๐ฐ๐ณ-๐น๐๐-๐๐๐ฅ๐จ๐ฑ๐ฒ๐ผ๐-๐๐-๐๐-๐๐ก๐ฃ๐จ๐ฏ๐ณ๐บ๐๐-๐๐ -๐ฅ๐ฉ๐ฐ๐ณ]/
|
|
7
|
+
end
|
|
8
|
+
end
|
data/lib/unicode/emoji.rb
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
|
-
require "unicode/version"
|
|
4
|
-
|
|
5
3
|
require_relative "emoji/constants"
|
|
6
4
|
|
|
7
5
|
module Unicode
|
|
@@ -34,7 +32,7 @@ module Unicode
|
|
|
34
32
|
end
|
|
35
33
|
|
|
36
34
|
generated_constants_dirpath = File.expand_path(
|
|
37
|
-
EMOJI_VERSION ==
|
|
35
|
+
EMOJI_VERSION == RbConfig::CONFIG["UNICODE_EMOJI_VERSION"] ? "emoji/generated_native/" : "emoji/generated/",
|
|
38
36
|
__dir__
|
|
39
37
|
)
|
|
40
38
|
|
|
@@ -50,6 +48,7 @@ module Unicode
|
|
|
50
48
|
REGEX_POSSIBLE
|
|
51
49
|
REGEX_BASIC
|
|
52
50
|
REGEX_TEXT
|
|
51
|
+
REGEX_TEXT_PRESENTATION
|
|
53
52
|
REGEX_PROP_EMOJI
|
|
54
53
|
REGEX_PROP_MODIFIER
|
|
55
54
|
REGEX_PROP_MODIFIER_BASE
|
data/unicode-emoji.gemspec
CHANGED
|
@@ -12,13 +12,11 @@ Gem::Specification.new do |gem|
|
|
|
12
12
|
gem.homepage = "https://github.com/janlelis/unicode-emoji"
|
|
13
13
|
gem.license = "MIT"
|
|
14
14
|
|
|
15
|
-
gem.files = Dir["{**/}{.*,*}"].select{ |path| File.file?(path) && path !~ /^pkg/ }
|
|
15
|
+
gem.files = Dir["{**/}{.*,*}"].select{ |path| File.file?(path) && path !~ /^pkg/ && path !~ /spec\/data\/[^.]/ }
|
|
16
16
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
17
17
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
18
18
|
gem.require_paths = ["lib"]
|
|
19
19
|
gem.metadata = { "rubygems_mfa_required" => "true" }
|
|
20
20
|
|
|
21
21
|
gem.required_ruby_version = ">= 2.5", "< 4.0"
|
|
22
|
-
|
|
23
|
-
gem.add_dependency "unicode-version", "~> 1.0"
|
|
24
22
|
end
|
metadata
CHANGED
|
@@ -1,29 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: unicode-emoji
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jan Lelis
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-11-
|
|
12
|
-
dependencies:
|
|
13
|
-
- !ruby/object:Gem::Dependency
|
|
14
|
-
name: unicode-version
|
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
|
16
|
-
requirements:
|
|
17
|
-
- - "~>"
|
|
18
|
-
- !ruby/object:Gem::Version
|
|
19
|
-
version: '1.0'
|
|
20
|
-
type: :runtime
|
|
21
|
-
prerelease: false
|
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
-
requirements:
|
|
24
|
-
- - "~>"
|
|
25
|
-
- !ruby/object:Gem::Version
|
|
26
|
-
version: '1.0'
|
|
11
|
+
date: 2024-11-19 00:00:00.000000000 Z
|
|
12
|
+
dependencies: []
|
|
27
13
|
description: "[Emoji 16.0] Provides Unicode Emoji data and regexes, incorporating
|
|
28
14
|
the latest Unicode and Emoji standards. Includes a categorized list of recommended
|
|
29
15
|
Emoji."
|
|
@@ -61,6 +47,7 @@ files:
|
|
|
61
47
|
- lib/unicode/emoji/generated/regex_prop_modifier_base.rb
|
|
62
48
|
- lib/unicode/emoji/generated/regex_prop_presentation.rb
|
|
63
49
|
- lib/unicode/emoji/generated/regex_text.rb
|
|
50
|
+
- lib/unicode/emoji/generated/regex_text_presentation.rb
|
|
64
51
|
- lib/unicode/emoji/generated/regex_valid.rb
|
|
65
52
|
- lib/unicode/emoji/generated/regex_valid_include_text.rb
|
|
66
53
|
- lib/unicode/emoji/generated/regex_well_formed.rb
|
|
@@ -80,6 +67,7 @@ files:
|
|
|
80
67
|
- lib/unicode/emoji/generated_native/regex_prop_modifier_base.rb
|
|
81
68
|
- lib/unicode/emoji/generated_native/regex_prop_presentation.rb
|
|
82
69
|
- lib/unicode/emoji/generated_native/regex_text.rb
|
|
70
|
+
- lib/unicode/emoji/generated_native/regex_text_presentation.rb
|
|
83
71
|
- lib/unicode/emoji/generated_native/regex_valid.rb
|
|
84
72
|
- lib/unicode/emoji/generated_native/regex_valid_include_text.rb
|
|
85
73
|
- lib/unicode/emoji/generated_native/regex_well_formed.rb
|
|
@@ -88,7 +76,6 @@ files:
|
|
|
88
76
|
- lib/unicode/emoji/lazy_constants.rb
|
|
89
77
|
- lib/unicode/emoji/list.rb
|
|
90
78
|
- spec/data/.keep
|
|
91
|
-
- spec/data/emoji-test.txt
|
|
92
79
|
- spec/emoji_test_txt_spec.rb
|
|
93
80
|
- spec/unicode_emoji_spec.rb
|
|
94
81
|
- unicode-emoji.gemspec
|
|
@@ -121,6 +108,5 @@ specification_version: 4
|
|
|
121
108
|
summary: Emoji data and regex
|
|
122
109
|
test_files:
|
|
123
110
|
- spec/data/.keep
|
|
124
|
-
- spec/data/emoji-test.txt
|
|
125
111
|
- spec/emoji_test_txt_spec.rb
|
|
126
112
|
- spec/unicode_emoji_spec.rb
|