tanuki_emoji 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +14 -0
- data/.gitlab-ci.yml +36 -0
- data/.idea/.gitignore +8 -0
- data/.rspec +3 -0
- data/.rubocop.yml +19 -0
- data/CHANGELOG.md +13 -0
- data/Gemfile +12 -0
- data/Gemfile.lock +69 -0
- data/LICENSE.txt +21 -0
- data/README.md +71 -0
- data/Rakefile +20 -0
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/lib/tanuki_emoji.rb +54 -0
- data/lib/tanuki_emoji/character.rb +72 -0
- data/lib/tanuki_emoji/db.rb +7 -0
- data/lib/tanuki_emoji/db/gemojione.rb +54 -0
- data/lib/tanuki_emoji/errors.rb +39 -0
- data/lib/tanuki_emoji/index.rb +94 -0
- data/lib/tanuki_emoji/version.rb +5 -0
- data/tanuki_emoji.gemspec +29 -0
- data/vendor/emojione-alpha-codes/CHANGELOG.md +55 -0
- data/vendor/emojione-alpha-codes/LICENSE.md +4 -0
- data/vendor/emojione-alpha-codes/README.md +416 -0
- data/vendor/emojione-alpha-codes/eac.csv +3058 -0
- data/vendor/emojione-alpha-codes/eac.json +18344 -0
- data/vendor/gemojione/LICENSE.txt +24 -0
- data/vendor/gemojione/index-3.3.0.json +33507 -0
- data/vendor/gemojione/index-4.1.0.json +45111 -0
- data/vendor/unicode/ReadMe.txt +21 -0
- data/vendor/unicode/emoji-data.txt +1261 -0
- data/vendor/unicode/emoji-sequences.txt +1403 -0
- data/vendor/unicode/emoji-test.txt +4879 -0
- data/vendor/unicode/emoji-variation-sequences.txt +723 -0
- data/vendor/unicode/emoji-zwj-sequences.txt +1390 -0
- metadata +82 -0
metadata
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: tanuki_emoji
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Gabriel Mazetto
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2021-08-04 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Tanuki Emoji provides Emoji character information and metadata with support
|
14
|
+
for Noto Emoji resources as fallback
|
15
|
+
email:
|
16
|
+
- brodock@gmail.com
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- ".gitignore"
|
22
|
+
- ".gitlab-ci.yml"
|
23
|
+
- ".idea/.gitignore"
|
24
|
+
- ".rspec"
|
25
|
+
- ".rubocop.yml"
|
26
|
+
- CHANGELOG.md
|
27
|
+
- Gemfile
|
28
|
+
- Gemfile.lock
|
29
|
+
- LICENSE.txt
|
30
|
+
- README.md
|
31
|
+
- Rakefile
|
32
|
+
- bin/console
|
33
|
+
- bin/setup
|
34
|
+
- lib/tanuki_emoji.rb
|
35
|
+
- lib/tanuki_emoji/character.rb
|
36
|
+
- lib/tanuki_emoji/db.rb
|
37
|
+
- lib/tanuki_emoji/db/gemojione.rb
|
38
|
+
- lib/tanuki_emoji/errors.rb
|
39
|
+
- lib/tanuki_emoji/index.rb
|
40
|
+
- lib/tanuki_emoji/version.rb
|
41
|
+
- tanuki_emoji.gemspec
|
42
|
+
- vendor/emojione-alpha-codes/CHANGELOG.md
|
43
|
+
- vendor/emojione-alpha-codes/LICENSE.md
|
44
|
+
- vendor/emojione-alpha-codes/README.md
|
45
|
+
- vendor/emojione-alpha-codes/eac.csv
|
46
|
+
- vendor/emojione-alpha-codes/eac.json
|
47
|
+
- vendor/gemojione/LICENSE.txt
|
48
|
+
- vendor/gemojione/index-3.3.0.json
|
49
|
+
- vendor/gemojione/index-4.1.0.json
|
50
|
+
- vendor/unicode/ReadMe.txt
|
51
|
+
- vendor/unicode/emoji-data.txt
|
52
|
+
- vendor/unicode/emoji-sequences.txt
|
53
|
+
- vendor/unicode/emoji-test.txt
|
54
|
+
- vendor/unicode/emoji-variation-sequences.txt
|
55
|
+
- vendor/unicode/emoji-zwj-sequences.txt
|
56
|
+
homepage: https://gitlab.com/brodock/tanuki_emoji
|
57
|
+
licenses:
|
58
|
+
- MIT
|
59
|
+
metadata:
|
60
|
+
homepage_uri: https://gitlab.com/brodock/tanuki_emoji
|
61
|
+
source_code_uri: https://gitlab.com/brodock/tanuki_emoji
|
62
|
+
changelog_uri: https://gitlab.com/brodock/tanuki_emoji/-/blob/main/CHANGELOG.md
|
63
|
+
post_install_message:
|
64
|
+
rdoc_options: []
|
65
|
+
require_paths:
|
66
|
+
- lib
|
67
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: 2.7.0
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
requirements: []
|
78
|
+
rubygems_version: 3.2.25
|
79
|
+
signing_key:
|
80
|
+
specification_version: 4
|
81
|
+
summary: Tanuki Emoji
|
82
|
+
test_files: []
|