unicode-blocks 1.7.0 → 1.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +2 -2
- data/MIT-LICENSE.txt +1 -1
- data/README.md +10 -3
- data/data/blocks.marshal.gz +0 -0
- data/lib/unicode/blocks/constants.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 366885cb5e621ba894ef51e186055dca65bf71bc7e3e7eb43a3c4340653bd05f
|
4
|
+
data.tar.gz: 4846a923ee58a49bdad5064f9793b9d99c07c96ee627f8832f6ec7a2c0a18830
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6e886a5b8a4f78fac3ee8ea1a6d9a9fe5d486670ff0390c7c1e5c49b67efd50c3f0af2b9db6a03d2a4507d4fd16f7f50ec9fbf6d2cbf76589c7a1064fc565065
|
7
|
+
data.tar.gz: 8af9e020ca98c9416d346ef1d62aa455bf7c1ab3db8141df96f83684cb17da3e46fe2df7f38addf90c2e058739784c791fbe93204269a41f9c2162b6b75dc25f
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/MIT-LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -2,9 +2,9 @@
|
|
2
2
|
|
3
3
|
Each Unicode character belongs to a [block](https://en.wikipedia.org/wiki/Unicode_block). This gem returns the all blocks associated with the given string.
|
4
4
|
|
5
|
-
Unicode version: **
|
5
|
+
Unicode version: **15.0.0** (September 2022)
|
6
6
|
|
7
|
-
Supported Rubies: **3.0**, **2.7**
|
7
|
+
Supported Rubies: **3.1**, **3.0**, **2.7**
|
8
8
|
|
9
9
|
Old Rubies which might still work: **2.6**, **2.5**, **2.4**, **2.3**, **2.2**, **2.1**, **2.0**
|
10
10
|
|
@@ -267,6 +267,7 @@ Old Hungarian
|
|
267
267
|
Hanifi Rohingya
|
268
268
|
Rumi Numeral Symbols
|
269
269
|
Yezidi
|
270
|
+
Arabic Extended-C
|
270
271
|
Old Sogdian
|
271
272
|
Sogdian
|
272
273
|
Old Uyghur
|
@@ -298,11 +299,13 @@ Zanabazar Square
|
|
298
299
|
Soyombo
|
299
300
|
Unified Canadian Aboriginal Syllabics Extended-A
|
300
301
|
Pau Cin Hau
|
302
|
+
Devanagari Extended-A
|
301
303
|
Bhaiksuki
|
302
304
|
Marchen
|
303
305
|
Masaram Gondi
|
304
306
|
Gunjala Gondi
|
305
307
|
Makasar
|
308
|
+
Kawi
|
306
309
|
Lisu Supplement
|
307
310
|
Tamil Supplement
|
308
311
|
Cuneiform
|
@@ -335,6 +338,7 @@ Znamenny Musical Notation
|
|
335
338
|
Byzantine Musical Symbols
|
336
339
|
Musical Symbols
|
337
340
|
Ancient Greek Musical Notation
|
341
|
+
Kaktovik Numerals
|
338
342
|
Mayan Numerals
|
339
343
|
Tai Xuan Jing Symbols
|
340
344
|
Counting Rod Numerals
|
@@ -342,9 +346,11 @@ Mathematical Alphanumeric Symbols
|
|
342
346
|
Sutton SignWriting
|
343
347
|
Latin Extended-G
|
344
348
|
Glagolitic Supplement
|
349
|
+
Cyrillic Extended-D
|
345
350
|
Nyiakeng Puachue Hmong
|
346
351
|
Toto
|
347
352
|
Wancho
|
353
|
+
Nag Mundari
|
348
354
|
Ethiopic Extended-B
|
349
355
|
Mende Kikakui
|
350
356
|
Adlam
|
@@ -374,6 +380,7 @@ CJK Unified Ideographs Extension E
|
|
374
380
|
CJK Unified Ideographs Extension F
|
375
381
|
CJK Compatibility Ideographs Supplement
|
376
382
|
CJK Unified Ideographs Extension G
|
383
|
+
CJK Unified Ideographs Extension H
|
377
384
|
Tags
|
378
385
|
Variation Selectors Supplement
|
379
386
|
Supplementary Private Use Area-A
|
@@ -384,5 +391,5 @@ See [unicode-x](https://github.com/janlelis/unicode-x) for more Unicode related
|
|
384
391
|
|
385
392
|
## MIT License
|
386
393
|
|
387
|
-
- Copyright (C) 2016-
|
394
|
+
- Copyright (C) 2016-2022 Jan Lelis <https://janlelis.com>. Released under the MIT license.
|
388
395
|
- Unicode data: https://www.unicode.org/copyright.html#Exhibit1
|
data/data/blocks.marshal.gz
CHANGED
Binary file
|
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
module Unicode
|
4
4
|
module Blocks
|
5
|
-
VERSION = "1.
|
6
|
-
UNICODE_VERSION = "
|
5
|
+
VERSION = "1.8.0"
|
6
|
+
UNICODE_VERSION = "15.0.0"
|
7
7
|
DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + "/../../../data/").freeze
|
8
8
|
INDEX_FILENAME = (DATA_DIRECTORY + "/blocks.marshal.gz").freeze
|
9
9
|
end
|
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unicode-blocks
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.8.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: 2022-09-13 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description: "[Unicode
|
13
|
+
description: "[Unicode 15.0.0] Answers the question: Which Unicode block does a code
|
14
14
|
point belong to?"
|
15
15
|
email:
|
16
16
|
- hi@ruby.consulting
|
@@ -52,7 +52,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
52
52
|
- !ruby/object:Gem::Version
|
53
53
|
version: '0'
|
54
54
|
requirements: []
|
55
|
-
rubygems_version: 3.
|
55
|
+
rubygems_version: 3.3.7
|
56
56
|
signing_key:
|
57
57
|
specification_version: 4
|
58
58
|
summary: Return Unicode blocks of a string.
|