unicode-types 1.9.0 → 1.10.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 +4 -4
- data/data/types.marshal.gz +0 -0
- data/lib/unicode/types/constants.rb +2 -2
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e713a4ef0dc772687f97c86d8c0610efeb809e83f5cbb32752c9a91f53a7ec64
|
4
|
+
data.tar.gz: bf28ef8c57b539c6652b94592ab05d9a94074b06cecfbe69b66851693062b2e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 650620062e8fceb974cc78a1e50d9e5bdc09884fc47c804b6f731c280ee5ac3542a14ec6b21b905ebd4f6fa0bbdc494e58a1b776f79eb713999cdcf261ac0880
|
7
|
+
data.tar.gz: ad3c44c72fe1034441343b4629979c4bf8546d6eff97d97038d18b252cdceb9d047814258c3d66b8f70207da66900900cffa1abc11cb05bf6e29dd003817c125
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/MIT-LICENSE.txt
CHANGED
data/README.md
CHANGED
@@ -10,11 +10,11 @@ Determine the basic type of codepoints. This can be one of:
|
|
10
10
|
- Noncharacter
|
11
11
|
- Reserved
|
12
12
|
|
13
|
-
Unicode version: **
|
13
|
+
Unicode version: **16.0.0** (September 2024)
|
14
14
|
|
15
|
-
Supported Rubies: **3.2**, **3.1**, **3.0**
|
15
|
+
Supported Rubies: **3.3**, **3.2**, **3.1**, **3.0**
|
16
16
|
|
17
|
-
Old Rubies that might still work: **2.X**
|
17
|
+
Old Rubies that might still work: **2.7**, **2.6**, **2.5**, **2.4**, **2.3**, **2.X**
|
18
18
|
|
19
19
|
## Gemfile
|
20
20
|
|
@@ -43,5 +43,5 @@ See [unicode-x](https://github.com/janlelis/unicode-x) for more Unicode related
|
|
43
43
|
|
44
44
|
## MIT License
|
45
45
|
|
46
|
-
- Copyright (C) 2016-
|
46
|
+
- Copyright (C) 2016-2024 Jan Lelis <https://janlelis.com>. Released under the MIT license.
|
47
47
|
- Unicode data: http://www.unicode.org/copyright.html#Exhibit1
|
data/data/types.marshal.gz
CHANGED
Binary file
|
@@ -2,8 +2,8 @@
|
|
2
2
|
|
3
3
|
module Unicode
|
4
4
|
module Types
|
5
|
-
VERSION = "1.
|
6
|
-
UNICODE_VERSION = "
|
5
|
+
VERSION = "1.10.0"
|
6
|
+
UNICODE_VERSION = "16.0.0"
|
7
7
|
DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + "/../../../data/").freeze
|
8
8
|
INDEX_FILENAME = (DATA_DIRECTORY + "/types.marshal.gz").freeze
|
9
9
|
end
|
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unicode-types
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan Lelis
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-09-12 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
|
-
description: "[Unicode
|
13
|
+
description: "[Unicode 16.0.0] Determines the very basic type of codepoints (one of:
|
14
14
|
Graphic, Format, Control, Private-use, Surrogate, Noncharacter, Reserved)"
|
15
15
|
email:
|
16
16
|
- hi@ruby.consulting
|
@@ -38,7 +38,7 @@ licenses:
|
|
38
38
|
- MIT
|
39
39
|
metadata:
|
40
40
|
rubygems_mfa_required: 'true'
|
41
|
-
post_install_message:
|
41
|
+
post_install_message:
|
42
42
|
rdoc_options: []
|
43
43
|
require_paths:
|
44
44
|
- lib
|
@@ -53,8 +53,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
requirements: []
|
56
|
-
rubygems_version: 3.
|
57
|
-
signing_key:
|
56
|
+
rubygems_version: 3.5.9
|
57
|
+
signing_key:
|
58
58
|
specification_version: 4
|
59
59
|
summary: Determines the very basic type of a code point
|
60
60
|
test_files:
|