unicode-types 1.3.0 → 1.4.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/.travis.yml +7 -5
- data/CHANGELOG.md +4 -0
- data/MIT-LICENSE.txt +1 -1
- data/README.md +5 -6
- data/data/types.marshal.gz +0 -0
- data/lib/unicode/types/constants.rb +6 -5
- metadata +4 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e0ebc8bd9d3c9fdc05216e4e238d2b9fce3e32da022e8fb311d3b905f3a9b7ee
|
|
4
|
+
data.tar.gz: 96f5a3287c61604cc4e06737d82ace0a332a297a19a874295c0aa86bba7e6303
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 062c019d388efa5dc62ac5c2b032bf2d3b237d864a5256d03e1a8e1ce25762f4bc21cba1242f94b6e60695b60b5e1759ae846c9227db9a87681f1f2f24e935da
|
|
7
|
+
data.tar.gz: a0bd61885efead199b81294e16acb05818c0c21d997a4c0f40eb0e788c0d3488e61e0c16f5dbc37bf2351583aea87824467f973d7739a695eab8e89c45042688
|
data/.travis.yml
CHANGED
|
@@ -4,20 +4,22 @@ language: ruby
|
|
|
4
4
|
script: bundle exec ruby spec/unicode_types_spec.rb
|
|
5
5
|
|
|
6
6
|
rvm:
|
|
7
|
-
-
|
|
8
|
-
- 2.5.
|
|
9
|
-
- 2.4.
|
|
10
|
-
- 2.3.
|
|
7
|
+
- 2.6.1
|
|
8
|
+
- 2.5.3
|
|
9
|
+
- 2.4.5
|
|
10
|
+
- 2.3.8
|
|
11
11
|
- 2.2
|
|
12
12
|
- 2.1
|
|
13
13
|
- 2.0
|
|
14
|
+
- ruby-head
|
|
14
15
|
- jruby-head
|
|
15
|
-
- jruby-9.
|
|
16
|
+
- jruby-9.2.6.0
|
|
16
17
|
|
|
17
18
|
matrix:
|
|
18
19
|
allow_failures:
|
|
19
20
|
- rvm: jruby-head
|
|
20
21
|
- rvm: ruby-head
|
|
22
|
+
- rvm: 2.3.8
|
|
21
23
|
- rvm: 2.2
|
|
22
24
|
- rvm: 2.1
|
|
23
25
|
- rvm: 2.0
|
data/CHANGELOG.md
CHANGED
data/MIT-LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# Unicode::Types [![[version]](https://badge.fury.io/rb/unicode-types.svg)](
|
|
1
|
+
# Unicode::Types [![[version]](https://badge.fury.io/rb/unicode-types.svg)](https://badge.fury.io/rb/unicode-types) [![[travis]](https://travis-ci.org/janlelis/unicode-types.svg)](https://travis-ci.org/janlelis/unicode-types)
|
|
2
2
|
|
|
3
3
|
Determine the basic type of codepoints. This can be one of:
|
|
4
4
|
|
|
@@ -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: **12.0.0** (March 2019)
|
|
14
14
|
|
|
15
|
-
Supported Rubies: **2.
|
|
15
|
+
Supported Rubies: **2.6**, **2.5**, **2.4**
|
|
16
16
|
|
|
17
|
-
Old Rubies that might still work: **2.2**, **2.1**, **2.0**
|
|
17
|
+
Old Rubies that might still work: **2.3**, **2.2**, **2.1**, **2.0**
|
|
18
18
|
|
|
19
19
|
## Gemfile
|
|
20
20
|
|
|
@@ -43,6 +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-2019 Jan Lelis <http://janlelis.com>. Released under the MIT license.
|
|
47
47
|
- Unicode data: http://www.unicode.org/copyright.html#Exhibit1
|
|
48
|
-
|
data/data/types.marshal.gz
CHANGED
|
Binary file
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
1
3
|
module Unicode
|
|
2
4
|
module Types
|
|
3
|
-
VERSION = "1.
|
|
4
|
-
UNICODE_VERSION = "
|
|
5
|
-
DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) +
|
|
6
|
-
INDEX_FILENAME = (DATA_DIRECTORY +
|
|
5
|
+
VERSION = "1.4.0"
|
|
6
|
+
UNICODE_VERSION = "12.0.0"
|
|
7
|
+
DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + "/../../../data/").freeze
|
|
8
|
+
INDEX_FILENAME = (DATA_DIRECTORY + "/types.marshal.gz").freeze
|
|
7
9
|
end
|
|
8
10
|
end
|
|
9
|
-
|
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.4.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: 2019-03-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description: "[Unicode
|
|
13
|
+
description: "[Unicode 12.0.0] Determine the basic type of codepoints (Graphic, Format,
|
|
14
14
|
Control, Private-use, Surrogate, Noncharacter, Reserved)"
|
|
15
15
|
email:
|
|
16
16
|
- mail@janlelis.de
|
|
@@ -53,8 +53,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
55
|
requirements: []
|
|
56
|
-
|
|
57
|
-
rubygems_version: 2.7.6
|
|
56
|
+
rubygems_version: 3.0.1
|
|
58
57
|
signing_key:
|
|
59
58
|
specification_version: 4
|
|
60
59
|
summary: Determine the basic type of codepoints.
|