unicode-types 1.11.0 → 1.12.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/Gemfile +2 -1
- data/Gemfile.lock +32 -14
- data/MIT-LICENSE.txt +1 -1
- data/README.md +2 -2
- data/data/types.marshal.gz +0 -0
- data/lib/unicode/types/constants.rb +2 -2
- data/spec/unicode_types_spec.rb +1 -0
- metadata +4 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b496b64f31ee338d24e1d3f4d2111282e9a0d1fb5efceda60b5130fadefd7e7e
|
|
4
|
+
data.tar.gz: f232f25d54d88d5bfd1ae3a3f0b9a2e696fb285a0743bbd9ed580f24a97b30e4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '08f70eb046dec6bd4036b95c51f1dcb8f3f7184d905481ab94eef79b70afe9325ec31e56ba148668c1269fb964f01efbb10bfb7c22388184949fdcbd6e82cf22'
|
|
7
|
+
data.tar.gz: afaad4074c42c4fca8bae368f969844b8b5d8e75865e4363348a3e8b230728d9a46089a901721fb458645193be3cb99ad9e787374ba903e227afe9712be78283
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
|
@@ -1,24 +1,41 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
unicode-types (1.
|
|
4
|
+
unicode-types (1.12.0)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
8
8
|
specs:
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
9
|
+
drb (2.2.3)
|
|
10
|
+
erb (6.0.7)
|
|
11
|
+
io-console (0.9.4)
|
|
12
|
+
irb (1.18.0)
|
|
13
|
+
pp (>= 0.6.0)
|
|
14
|
+
prism (>= 1.3.0)
|
|
15
|
+
rdoc (>= 4.0.0)
|
|
16
|
+
reline (>= 0.4.2)
|
|
17
|
+
logger (1.7.0)
|
|
18
|
+
minitest (6.0.6)
|
|
19
|
+
drb (~> 2.0)
|
|
20
|
+
prism (~> 1.5)
|
|
21
|
+
minitest-mock (5.27.0)
|
|
22
|
+
pp (0.6.4)
|
|
23
|
+
prettyprint
|
|
24
|
+
prettyprint (0.2.0)
|
|
25
|
+
prism (1.9.0)
|
|
26
|
+
rake (13.4.2)
|
|
27
|
+
rbs (4.2.0)
|
|
28
|
+
logger
|
|
29
|
+
prism (>= 1.6.0)
|
|
30
|
+
tsort
|
|
31
|
+
rdoc (8.0.0)
|
|
32
|
+
erb
|
|
33
|
+
prism (>= 1.6.0)
|
|
34
|
+
rbs (>= 4.0.0)
|
|
35
|
+
tsort
|
|
36
|
+
reline (0.7.0)
|
|
20
37
|
io-console (~> 0.5)
|
|
21
|
-
|
|
38
|
+
tsort (0.2.0)
|
|
22
39
|
|
|
23
40
|
PLATFORMS
|
|
24
41
|
ruby
|
|
@@ -26,8 +43,9 @@ PLATFORMS
|
|
|
26
43
|
DEPENDENCIES
|
|
27
44
|
irb
|
|
28
45
|
minitest
|
|
46
|
+
minitest-mock
|
|
29
47
|
rake
|
|
30
48
|
unicode-types!
|
|
31
49
|
|
|
32
50
|
BUNDLED WITH
|
|
33
|
-
|
|
51
|
+
4.1.0.beta1
|
data/MIT-LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -10,7 +10,7 @@ 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: **18.0.0** (September 2026)
|
|
14
14
|
|
|
15
15
|
## Gemfile
|
|
16
16
|
|
|
@@ -39,5 +39,5 @@ See [unicode-x](https://github.com/janlelis/unicode-x) for more Unicode related
|
|
|
39
39
|
|
|
40
40
|
## MIT License
|
|
41
41
|
|
|
42
|
-
- Copyright (C) 2016-
|
|
42
|
+
- Copyright (C) 2016-2026 Jan Lelis <https://janlelis.com>. Released under the MIT license.
|
|
43
43
|
- 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.12.0"
|
|
6
|
+
UNICODE_VERSION = "18.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
|
data/spec/unicode_types_spec.rb
CHANGED
metadata
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: unicode-types
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.12.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jan Lelis
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies: []
|
|
13
|
-
description: "[Unicode
|
|
12
|
+
description: "[Unicode 18.0.0] Determines the very basic type of codepoints (one of:
|
|
14
13
|
Graphic, Format, Control, Private-use, Surrogate, Noncharacter, Reserved)"
|
|
15
14
|
email:
|
|
16
15
|
- hi@ruby.consulting
|
|
@@ -38,7 +37,6 @@ licenses:
|
|
|
38
37
|
- MIT
|
|
39
38
|
metadata:
|
|
40
39
|
rubygems_mfa_required: 'true'
|
|
41
|
-
post_install_message:
|
|
42
40
|
rdoc_options: []
|
|
43
41
|
require_paths:
|
|
44
42
|
- lib
|
|
@@ -53,8 +51,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
53
51
|
- !ruby/object:Gem::Version
|
|
54
52
|
version: '0'
|
|
55
53
|
requirements: []
|
|
56
|
-
rubygems_version:
|
|
57
|
-
signing_key:
|
|
54
|
+
rubygems_version: 4.0.21
|
|
58
55
|
specification_version: 4
|
|
59
56
|
summary: Determines the very basic type of a code point
|
|
60
57
|
test_files:
|