tanuki_emoji 0.7.0 → 0.9.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitlab-ci.yml +3 -3
- data/.rubocop.yml +1 -1
- data/.ruby-version +1 -1
- data/CHANGELOG.md +18 -0
- data/Gemfile.lock +1 -1
- data/README.md +6 -2
- data/lib/tanuki_emoji/character.rb +3 -3
- data/lib/tanuki_emoji/db/unicode_ordering.rb +47 -0
- data/lib/tanuki_emoji/db.rb +1 -0
- data/lib/tanuki_emoji/index.rb +1 -0
- data/lib/tanuki_emoji/version.rb +1 -1
- data/tanuki_emoji.gemspec +1 -1
- data/vendor/unicode/emoji-ordering.txt +3810 -0
- metadata +5 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tanuki_emoji
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Gabriel Mazetto
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-10-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gitlab-dangerfiles
|
@@ -55,6 +55,7 @@ files:
|
|
55
55
|
- lib/tanuki_emoji/db/emoji_data.rb
|
56
56
|
- lib/tanuki_emoji/db/emoji_data_parser.rb
|
57
57
|
- lib/tanuki_emoji/db/gemojione.rb
|
58
|
+
- lib/tanuki_emoji/db/unicode_ordering.rb
|
58
59
|
- lib/tanuki_emoji/db/unicode_version.rb
|
59
60
|
- lib/tanuki_emoji/errors.rb
|
60
61
|
- lib/tanuki_emoji/index.rb
|
@@ -72,6 +73,7 @@ files:
|
|
72
73
|
- vendor/gemojione/index-4.1.0.json
|
73
74
|
- vendor/unicode/ReadMe.txt
|
74
75
|
- vendor/unicode/emoji-data.txt
|
76
|
+
- vendor/unicode/emoji-ordering.txt
|
75
77
|
- vendor/unicode/emoji-sequences.txt
|
76
78
|
- vendor/unicode/emoji-test.txt
|
77
79
|
- vendor/unicode/emoji-variation-sequences.txt
|
@@ -93,7 +95,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
93
95
|
requirements:
|
94
96
|
- - ">="
|
95
97
|
- !ruby/object:Gem::Version
|
96
|
-
version:
|
98
|
+
version: 3.0.0
|
97
99
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
98
100
|
requirements:
|
99
101
|
- - ">="
|