e621_export_downloader 0.0.1

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.
Files changed (78) hide show
  1. checksums.yaml +7 -0
  2. data/.irbrc +14 -0
  3. data/.ruby-version +1 -0
  4. data/LICENSE +21 -0
  5. data/README.md +148 -0
  6. data/Rakefile +8 -0
  7. data/exe/e621-export-downloader +112 -0
  8. data/lib/e621_export_downloader/client/options/builder/parsers.rb +42 -0
  9. data/lib/e621_export_downloader/client/options/builder.rb +44 -0
  10. data/lib/e621_export_downloader/client/options.rb +37 -0
  11. data/lib/e621_export_downloader/client.rb +120 -0
  12. data/lib/e621_export_downloader/constants.rb +17 -0
  13. data/lib/e621_export_downloader/export.rb +128 -0
  14. data/lib/e621_export_downloader/export_helper.rb +83 -0
  15. data/lib/e621_export_downloader/models/pool.rb +69 -0
  16. data/lib/e621_export_downloader/models/post.rb +166 -0
  17. data/lib/e621_export_downloader/models/tag.rb +41 -0
  18. data/lib/e621_export_downloader/models/tag_alias.rb +46 -0
  19. data/lib/e621_export_downloader/models/tag_implication.rb +46 -0
  20. data/lib/e621_export_downloader/models/wiki_page.rb +61 -0
  21. data/lib/e621_export_downloader/types.rb +14 -0
  22. data/lib/e621_export_downloader/version.rb +10 -0
  23. data/lib/e621_export_downloader.rb +12 -0
  24. data/sorbet/config +5 -0
  25. data/sorbet/rbi/annotations/.gitattributes +1 -0
  26. data/sorbet/rbi/annotations/faraday.rbi +17 -0
  27. data/sorbet/rbi/annotations/rainbow.rbi +269 -0
  28. data/sorbet/rbi/gems/.gitattributes +1 -0
  29. data/sorbet/rbi/gems/ast@2.4.3.rbi +550 -0
  30. data/sorbet/rbi/gems/benchmark@0.5.0.rbi +621 -0
  31. data/sorbet/rbi/gems/csv@3.3.5.rbi +4462 -0
  32. data/sorbet/rbi/gems/date@3.5.1.rbi +391 -0
  33. data/sorbet/rbi/gems/erb@6.0.4.rbi +1538 -0
  34. data/sorbet/rbi/gems/erubi@1.13.1.rbi +155 -0
  35. data/sorbet/rbi/gems/faraday-net_http@3.4.2.rbi +9 -0
  36. data/sorbet/rbi/gems/faraday@2.14.1.rbi +9 -0
  37. data/sorbet/rbi/gems/io-console@0.8.2.rbi +9 -0
  38. data/sorbet/rbi/gems/json@2.19.5.rbi +2240 -0
  39. data/sorbet/rbi/gems/language_server-protocol@3.17.0.5.rbi +9 -0
  40. data/sorbet/rbi/gems/lint_roller@1.1.0.rbi +189 -0
  41. data/sorbet/rbi/gems/logger@1.7.0.rbi +896 -0
  42. data/sorbet/rbi/gems/net-http@0.9.1.rbi +4029 -0
  43. data/sorbet/rbi/gems/netrc@0.11.0.rbi +147 -0
  44. data/sorbet/rbi/gems/parallel@2.1.0.rbi +321 -0
  45. data/sorbet/rbi/gems/parser@3.3.11.1.rbi +5229 -0
  46. data/sorbet/rbi/gems/pp@0.6.3.rbi +377 -0
  47. data/sorbet/rbi/gems/prettyprint@0.2.0.rbi +455 -0
  48. data/sorbet/rbi/gems/prism@1.9.0.rbi +42224 -0
  49. data/sorbet/rbi/gems/psych@5.3.1.rbi +2374 -0
  50. data/sorbet/rbi/gems/racc@1.8.1.rbi +165 -0
  51. data/sorbet/rbi/gems/rainbow@3.1.1.rbi +362 -0
  52. data/sorbet/rbi/gems/rake@13.4.2.rbi +3130 -0
  53. data/sorbet/rbi/gems/rbi@0.3.11.rbi +5505 -0
  54. data/sorbet/rbi/gems/rbs@4.0.2.rbi +6908 -0
  55. data/sorbet/rbi/gems/rdoc@7.2.0.rbi +9 -0
  56. data/sorbet/rbi/gems/regexp_parser@2.12.0.rbi +3398 -0
  57. data/sorbet/rbi/gems/reline@0.6.3.rbi +2446 -0
  58. data/sorbet/rbi/gems/require-hooks@0.4.0.rbi +152 -0
  59. data/sorbet/rbi/gems/rexml@3.4.4.rbi +4905 -0
  60. data/sorbet/rbi/gems/rubocop-ast@1.49.1.rbi +7062 -0
  61. data/sorbet/rbi/gems/rubocop-rake@0.7.1.rbi +314 -0
  62. data/sorbet/rbi/gems/rubocop@1.86.1.rbi +62227 -0
  63. data/sorbet/rbi/gems/ruby-progressbar@1.13.0.rbi +988 -0
  64. data/sorbet/rbi/gems/rubydex@0.2.0.rbi +663 -0
  65. data/sorbet/rbi/gems/spoom@1.7.13.rbi +6151 -0
  66. data/sorbet/rbi/gems/stringio@3.2.0.rbi +9 -0
  67. data/sorbet/rbi/gems/tapioca@0.19.1.rbi +3555 -0
  68. data/sorbet/rbi/gems/thor@1.5.0.rbi +3870 -0
  69. data/sorbet/rbi/gems/tsort@0.2.0.rbi +389 -0
  70. data/sorbet/rbi/gems/unicode-display_width@3.2.0.rbi +130 -0
  71. data/sorbet/rbi/gems/unicode-emoji@4.2.0.rbi +332 -0
  72. data/sorbet/rbi/gems/uri@1.1.1.rbi +2400 -0
  73. data/sorbet/rbi/gems/zeitwerk@2.7.5.rbi +1090 -0
  74. data/sorbet/rbi/shims/faraday.rbi +42 -0
  75. data/sorbet/rbi/todo.rbi +7 -0
  76. data/sorbet/tapioca/config.yml +13 -0
  77. data/sorbet/tapioca/require.rb +4 -0
  78. metadata +177 -0
@@ -0,0 +1,332 @@
1
+ # typed: true
2
+
3
+ # DO NOT EDIT MANUALLY
4
+ # This is an autogenerated file for types exported from the `unicode-emoji` gem.
5
+ # Please instead update this file by running `bin/tapioca gem unicode-emoji`.
6
+
7
+
8
+ # This file was generated by a script, please do not edit it by hand.
9
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
10
+ # This file was generated by a script, please do not edit it by hand.
11
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
12
+ # This file was generated by a script, please do not edit it by hand.
13
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
14
+ # This file was generated by a script, please do not edit it by hand.
15
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
16
+ # This file was generated by a script, please do not edit it by hand.
17
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
18
+ # This file was generated by a script, please do not edit it by hand.
19
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
20
+ # This file was generated by a script, please do not edit it by hand.
21
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
22
+ # This file was generated by a script, please do not edit it by hand.
23
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
24
+ # This file was generated by a script, please do not edit it by hand.
25
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
26
+ # This file was generated by a script, please do not edit it by hand.
27
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
28
+ # This file was generated by a script, please do not edit it by hand.
29
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
30
+ # This file was generated by a script, please do not edit it by hand.
31
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
32
+ # This file was generated by a script, please do not edit it by hand.
33
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
34
+ # This file was generated by a script, please do not edit it by hand.
35
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
36
+ # This file was generated by a script, please do not edit it by hand.
37
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
38
+ # This file was generated by a script, please do not edit it by hand.
39
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
40
+ # This file was generated by a script, please do not edit it by hand.
41
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
42
+ # This file was generated by a script, please do not edit it by hand.
43
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
44
+ # This file was generated by a script, please do not edit it by hand.
45
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
46
+ # This file was generated by a script, please do not edit it by hand.
47
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
48
+ # This file was generated by a script, please do not edit it by hand.
49
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
50
+ # This file was generated by a script, please do not edit it by hand.
51
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
52
+ # This file was generated by a script, please do not edit it by hand.
53
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
54
+ # This file was generated by a script, please do not edit it by hand.
55
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
56
+ # This file was generated by a script, please do not edit it by hand.
57
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
58
+ # This file was generated by a script, please do not edit it by hand.
59
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
60
+ # This file was generated by a script, please do not edit it by hand.
61
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
62
+ # This file was generated by a script, please do not edit it by hand.
63
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
64
+ # This file was generated by a script, please do not edit it by hand.
65
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
66
+ # This file was generated by a script, please do not edit it by hand.
67
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
68
+ # This file was generated by a script, please do not edit it by hand.
69
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
70
+ # This file was generated by a script, please do not edit it by hand.
71
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
72
+ # This file was generated by a script, please do not edit it by hand.
73
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
74
+ # This file was generated by a script, please do not edit it by hand.
75
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
76
+ # This file was generated by a script, please do not edit it by hand.
77
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
78
+ # This file was generated by a script, please do not edit it by hand.
79
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
80
+ # This file was generated by a script, please do not edit it by hand.
81
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
82
+ # This file was generated by a script, please do not edit it by hand.
83
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
84
+ # This file was generated by a script, please do not edit it by hand.
85
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
86
+ # This file was generated by a script, please do not edit it by hand.
87
+ # See `$ rake generate_constants` and data/generate_constants.rb for more info.
88
+ #
89
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/constants.rb:3
90
+ module Unicode; end
91
+
92
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/constants.rb:4
93
+ module Unicode::Emoji
94
+ class << self
95
+ # Returns ordered list of Emoji, categorized in a three-level deep Hash structure
96
+ #
97
+ # pkg:gem/unicode-emoji#lib/unicode/emoji.rb:80
98
+ def list(key = T.unsafe(nil), sub_key = T.unsafe(nil)); end
99
+
100
+ # Return Emoji properties of character as an Array or nil
101
+ # See PROPERTY_NAMES constant for possible properties
102
+ #
103
+ # Source: see https://www.unicode.org/Public/16.0.0/ucd/emoji/emoji-data.txt
104
+ #
105
+ # pkg:gem/unicode-emoji#lib/unicode/emoji.rb:68
106
+ def properties(char); end
107
+
108
+ private
109
+
110
+ # pkg:gem/unicode-emoji#lib/unicode/emoji.rb:88
111
+ def get_codepoint_value(char); end
112
+ end
113
+ end
114
+
115
+ # Last codepoint of tag-based subdivision flags
116
+ #
117
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/constants.rb:32
118
+ Unicode::Emoji::CANCEL_TAG = T.let(T.unsafe(nil), Integer)
119
+
120
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/constants.rb:8
121
+ Unicode::Emoji::CLDR_VERSION = T.let(T.unsafe(nil), String)
122
+
123
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/constants.rb:9
124
+ Unicode::Emoji::DATA_DIRECTORY = T.let(T.unsafe(nil), String)
125
+
126
+ # The current list of codepoints with the "Emoji" property
127
+ # Same characters as \p{Emoji}
128
+ # (Emoji version of this gem might be more recent than Ruby's Emoji version)
129
+ #
130
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/lazy_constants.rb:8
131
+ Unicode::Emoji::EMOJI_CHAR = T.let(T.unsafe(nil), Array)
132
+
133
+ # The current list of codepoints with the "Emoji_Component" property
134
+ # Same characters as \p{Emoji Component} or \p{EComp}
135
+ # (Emoji version of this gem might be more recent than Ruby's Emoji version)
136
+ #
137
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/lazy_constants.rb:21
138
+ Unicode::Emoji::EMOJI_COMPONENT = T.let(T.unsafe(nil), Array)
139
+
140
+ # The list of characters that can be used as base for keycap sequences
141
+ #
142
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/lazy_constants.rb:42
143
+ Unicode::Emoji::EMOJI_KEYCAPS = T.let(T.unsafe(nil), Array)
144
+
145
+ # Combining Enclosing Keycap character
146
+ #
147
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/constants.rb:38
148
+ Unicode::Emoji::EMOJI_KEYCAP_SUFFIX = T.let(T.unsafe(nil), Integer)
149
+
150
+ # The current list of codepoints with the "Emoji_Modifier" property
151
+ # Same characters as \p{Emoji Modifier} or \p{EMod}
152
+ # (Emoji version of this gem might be more recent than Ruby's Emoji version)
153
+ #
154
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/lazy_constants.rb:31
155
+ Unicode::Emoji::EMOJI_MODIFIERS = T.let(T.unsafe(nil), Array)
156
+
157
+ # The current list of codepoints with the "Emoji_Modifier_Base" property
158
+ # Same characters as \p{Emoji Modifier Base} or \p{EBase}
159
+ # (Emoji version of this gem might be more recent than Ruby's Emoji version)
160
+ #
161
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/lazy_constants.rb:26
162
+ Unicode::Emoji::EMOJI_MODIFIER_BASES = T.let(T.unsafe(nil), Array)
163
+
164
+ # The current list of codepoints with the "Emoji_Presentation" property
165
+ # Same characters as \p{Emoji Presentation} or \p{EPres}
166
+ # (Emoji version of this gem might be more recent than Ruby's Emoji version)
167
+ #
168
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/lazy_constants.rb:13
169
+ Unicode::Emoji::EMOJI_PRESENTATION = T.let(T.unsafe(nil), Array)
170
+
171
+ # First codepoint of tag-based subdivision flags
172
+ #
173
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/constants.rb:29
174
+ Unicode::Emoji::EMOJI_TAG_BASE_FLAG = T.let(T.unsafe(nil), Integer)
175
+
176
+ # Variation Selector 16 (VS16), enables emoji presentation mode for preceding codepoint
177
+ #
178
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/constants.rb:23
179
+ Unicode::Emoji::EMOJI_VARIATION_SELECTOR = T.let(T.unsafe(nil), Integer)
180
+
181
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/constants.rb:6
182
+ Unicode::Emoji::EMOJI_VERSION = T.let(T.unsafe(nil), String)
183
+
184
+ # The current list of codepoints with the "Extended_Pictographic" property
185
+ # Same characters as \p{Extended Pictographic} or \p{ExtPict}
186
+ # (Emoji version of this gem might be more recent than Ruby's Emoji version)
187
+ #
188
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/lazy_constants.rb:36
189
+ Unicode::Emoji::EXTENDED_PICTOGRAPHIC = T.let(T.unsafe(nil), Array)
190
+
191
+ # The current list of codepoints with the "Extended_Pictographic" property that don't have the "Emoji" property
192
+ #
193
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/lazy_constants.rb:39
194
+ Unicode::Emoji::EXTENDED_PICTOGRAPHIC_NO_EMOJI = T.let(T.unsafe(nil), Array)
195
+
196
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/index.rb:11
197
+ Unicode::Emoji::INDEX = T.let(T.unsafe(nil), Hash)
198
+
199
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/constants.rb:10
200
+ Unicode::Emoji::INDEX_FILENAME = T.let(T.unsafe(nil), String)
201
+
202
+ # Contains an ordered and group list of all currently recommended Emoji (RGI/FQE)
203
+ #
204
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/list.rb:6
205
+ Unicode::Emoji::LIST = T.let(T.unsafe(nil), Hash)
206
+
207
+ # Sometimes, categories change, we issue a warning in these cases
208
+ #
209
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/list.rb:9
210
+ Unicode::Emoji::LIST_REMOVED_KEYS = T.let(T.unsafe(nil), Array)
211
+
212
+ # Unicode properties, see https://www.unicode.org/Public/16.0.0/ucd/emoji/emoji-data.txt
213
+ #
214
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/constants.rb:13
215
+ Unicode::Emoji::PROPERTY_NAMES = T.let(T.unsafe(nil), Hash)
216
+
217
+ # The list RGI tag sequence flags
218
+ #
219
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/lazy_constants.rb:51
220
+ Unicode::Emoji::RECOMMENDED_SUBDIVISION_FLAGS = T.let(T.unsafe(nil), Array)
221
+
222
+ # The list of fully-qualified RGI Emoji ZWJ sequences
223
+ #
224
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/lazy_constants.rb:54
225
+ Unicode::Emoji::RECOMMENDED_ZWJ_SEQUENCES = T.let(T.unsafe(nil), Array)
226
+
227
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex.rb:6
228
+ Unicode::Emoji::REGEX = T.let(T.unsafe(nil), Regexp)
229
+
230
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_basic.rb:6
231
+ Unicode::Emoji::REGEX_BASIC = T.let(T.unsafe(nil), Regexp)
232
+
233
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_emoji_keycap.rb:6
234
+ Unicode::Emoji::REGEX_EMOJI_KEYCAP = T.let(T.unsafe(nil), Regexp)
235
+
236
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_include_mqe.rb:6
237
+ Unicode::Emoji::REGEX_INCLUDE_MQE = T.let(T.unsafe(nil), Regexp)
238
+
239
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_include_mqe_uqe.rb:6
240
+ Unicode::Emoji::REGEX_INCLUDE_MQE_UQE = T.let(T.unsafe(nil), Regexp)
241
+
242
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_include_text.rb:6
243
+ Unicode::Emoji::REGEX_INCLUDE_TEXT = T.let(T.unsafe(nil), Regexp)
244
+
245
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_picto.rb:6
246
+ Unicode::Emoji::REGEX_PICTO = T.let(T.unsafe(nil), Regexp)
247
+
248
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_picto_no_emoji.rb:6
249
+ Unicode::Emoji::REGEX_PICTO_NO_EMOJI = T.let(T.unsafe(nil), Regexp)
250
+
251
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_possible.rb:6
252
+ Unicode::Emoji::REGEX_POSSIBLE = T.let(T.unsafe(nil), Regexp)
253
+
254
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_prop_component.rb:6
255
+ Unicode::Emoji::REGEX_PROP_COMPONENT = T.let(T.unsafe(nil), Regexp)
256
+
257
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_prop_emoji.rb:6
258
+ Unicode::Emoji::REGEX_PROP_EMOJI = T.let(T.unsafe(nil), Regexp)
259
+
260
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_prop_modifier.rb:6
261
+ Unicode::Emoji::REGEX_PROP_MODIFIER = T.let(T.unsafe(nil), Regexp)
262
+
263
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_prop_modifier_base.rb:6
264
+ Unicode::Emoji::REGEX_PROP_MODIFIER_BASE = T.let(T.unsafe(nil), Regexp)
265
+
266
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_prop_presentation.rb:6
267
+ Unicode::Emoji::REGEX_PROP_PRESENTATION = T.let(T.unsafe(nil), Regexp)
268
+
269
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_text.rb:6
270
+ Unicode::Emoji::REGEX_TEXT = T.let(T.unsafe(nil), Regexp)
271
+
272
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_text_presentation.rb:6
273
+ Unicode::Emoji::REGEX_TEXT_PRESENTATION = T.let(T.unsafe(nil), Regexp)
274
+
275
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_valid.rb:6
276
+ Unicode::Emoji::REGEX_VALID = T.let(T.unsafe(nil), Regexp)
277
+
278
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_valid_include_text.rb:6
279
+ Unicode::Emoji::REGEX_VALID_INCLUDE_TEXT = T.let(T.unsafe(nil), Regexp)
280
+
281
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_well_formed.rb:6
282
+ Unicode::Emoji::REGEX_WELL_FORMED = T.let(T.unsafe(nil), Regexp)
283
+
284
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/generated/regex_well_formed_include_text.rb:6
285
+ Unicode::Emoji::REGEX_WELL_FORMED_INCLUDE_TEXT = T.let(T.unsafe(nil), Regexp)
286
+
287
+ # Two regional indicators make up a region
288
+ #
289
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/constants.rb:44
290
+ Unicode::Emoji::REGIONAL_INDICATORS = T.let(T.unsafe(nil), Array)
291
+
292
+ # Tags characters allowed in tag-based subdivision flags
293
+ #
294
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/constants.rb:35
295
+ Unicode::Emoji::SPEC_TAGS = T.let(T.unsafe(nil), Array)
296
+
297
+ # The current list of codepoints with the "Emoji" property that lack the "Emoji Presentation" property
298
+ #
299
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/lazy_constants.rb:16
300
+ Unicode::Emoji::TEXT_PRESENTATION = T.let(T.unsafe(nil), Array)
301
+
302
+ # Variation Selector 15 (VS15), enables text presentation mode for preceding codepoint
303
+ #
304
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/constants.rb:26
305
+ Unicode::Emoji::TEXT_VARIATION_SELECTOR = T.let(T.unsafe(nil), Integer)
306
+
307
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/constants.rb:7
308
+ Unicode::Emoji::UNICODE_VERSION = T.let(T.unsafe(nil), String)
309
+
310
+ # The list of valid regions
311
+ #
312
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/lazy_constants.rb:45
313
+ Unicode::Emoji::VALID_REGION_FLAGS = T.let(T.unsafe(nil), Array)
314
+
315
+ # The list of valid subdivisions in regex character class syntax
316
+ #
317
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/lazy_constants.rb:48
318
+ Unicode::Emoji::VALID_SUBDIVISIONS = T.let(T.unsafe(nil), Array)
319
+
320
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/constants.rb:5
321
+ Unicode::Emoji::VERSION = T.let(T.unsafe(nil), String)
322
+
323
+ # The current list of Emoji components that should have a visual representation
324
+ # Currently skin tone modifiers + hair components
325
+ #
326
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/constants.rb:48
327
+ Unicode::Emoji::VISUAL_COMPONENT = T.let(T.unsafe(nil), Array)
328
+
329
+ # Zero-width-joiner to enable combination of multiple Emoji in a sequence
330
+ #
331
+ # pkg:gem/unicode-emoji#lib/unicode/emoji/constants.rb:41
332
+ Unicode::Emoji::ZWJ = T.let(T.unsafe(nil), Integer)