unicode-types 1.5.0 → 1.6.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 +6 -13
- data/CHANGELOG.md +4 -0
- data/Gemfile +1 -1
- data/MIT-LICENSE.txt +1 -1
- data/README.md +3 -3
- data/data/types.marshal.gz +0 -0
- data/lib/unicode/types/constants.rb +2 -2
- data/unicode-types.gemspec +4 -4
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aff4c48b1125a99950ef4d2cf6c8ab48df5acae67e0746288ec6d132523b16c0
|
|
4
|
+
data.tar.gz: c989b131058cd8ee989f01cebc4162b6e3a727f13952c8ec08b1ba40fc1e70ed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 15f3666d6fb7bab7c1a1fef7afe43d2f922efcaed8e9f7d4bd3cb4a64b7cd15ce8f978fb7062b74d93859cc2ce02d9e1f56e6e89809f2f276a0ccd7b1c748e46
|
|
7
|
+
data.tar.gz: 80f07f806f5a577e5681421fb247d4c3054c6d71aa569ea728e0bb43fcde964f609ff50b681769f9142100fbb86ea4a06ec433041dbe838a1e6bb1cb32cae1df
|
data/.travis.yml
CHANGED
|
@@ -1,27 +1,20 @@
|
|
|
1
1
|
sudo: false
|
|
2
2
|
language: ruby
|
|
3
3
|
|
|
4
|
-
script: bundle exec ruby spec/unicode_types_spec.rb
|
|
5
|
-
|
|
6
4
|
rvm:
|
|
5
|
+
- 2.7
|
|
7
6
|
- 2.6
|
|
8
7
|
- 2.5
|
|
9
8
|
- 2.4
|
|
10
9
|
- 2.3
|
|
11
|
-
- 2.2
|
|
12
|
-
- 2.1
|
|
13
|
-
- 2.0
|
|
14
10
|
- ruby-head
|
|
15
|
-
- jruby-
|
|
16
|
-
-
|
|
11
|
+
- jruby-9.2.9.0
|
|
12
|
+
- truffleruby
|
|
17
13
|
|
|
18
14
|
matrix:
|
|
19
15
|
allow_failures:
|
|
20
|
-
- rvm: jruby-head
|
|
21
|
-
- rvm: ruby-head
|
|
22
16
|
- rvm: 2.3
|
|
23
|
-
- rvm:
|
|
24
|
-
- rvm: 2.
|
|
25
|
-
- rvm:
|
|
17
|
+
- rvm: ruby-head
|
|
18
|
+
- rvm: jruby-2.9.2.0
|
|
19
|
+
- rvm: truffleruby
|
|
26
20
|
# fast_finish: true
|
|
27
|
-
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
data/MIT-LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -10,9 +10,9 @@ 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: **13.0.0** (March 2020)
|
|
14
14
|
|
|
15
|
-
Supported Rubies: **2.6**, **2.5**, **2.4**
|
|
15
|
+
Supported Rubies: **2.7**, **2.6**, **2.5**, **2.4**
|
|
16
16
|
|
|
17
17
|
Old Rubies that might still work: **2.3**, **2.2**, **2.1**, **2.0**
|
|
18
18
|
|
|
@@ -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-2020 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.6.0"
|
|
6
|
+
UNICODE_VERSION = "13.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/unicode-types.gemspec
CHANGED
|
@@ -5,10 +5,10 @@ require File.dirname(__FILE__) + "/lib/unicode/types/constants"
|
|
|
5
5
|
Gem::Specification.new do |gem|
|
|
6
6
|
gem.name = "unicode-types"
|
|
7
7
|
gem.version = Unicode::Types::VERSION
|
|
8
|
-
gem.summary = "
|
|
9
|
-
gem.description = "[Unicode #{Unicode::Types::UNICODE_VERSION}]
|
|
8
|
+
gem.summary = "Determines the very basic type of a code point"
|
|
9
|
+
gem.description = "[Unicode #{Unicode::Types::UNICODE_VERSION}] Determines the very basic type of codepoints (one of: Graphic, Format, Control, Private-use, Surrogate, Noncharacter, Reserved)"
|
|
10
10
|
gem.authors = ["Jan Lelis"]
|
|
11
|
-
gem.email = ["
|
|
11
|
+
gem.email = ["hi@ruby.consulting"]
|
|
12
12
|
gem.homepage = "https://github.com/janlelis/unicode-types"
|
|
13
13
|
gem.license = "MIT"
|
|
14
14
|
|
|
@@ -17,5 +17,5 @@ Gem::Specification.new do |gem|
|
|
|
17
17
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
18
18
|
gem.require_paths = ["lib"]
|
|
19
19
|
|
|
20
|
-
gem.required_ruby_version = "
|
|
20
|
+
gem.required_ruby_version = ">= 2.0"
|
|
21
21
|
end
|
metadata
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: unicode-types
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.6.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: 2020-03-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description: "[Unicode
|
|
14
|
-
Control, Private-use, Surrogate, Noncharacter, Reserved)"
|
|
13
|
+
description: "[Unicode 13.0.0] Determines the very basic type of codepoints (one of:
|
|
14
|
+
Graphic, Format, Control, Private-use, Surrogate, Noncharacter, Reserved)"
|
|
15
15
|
email:
|
|
16
|
-
-
|
|
16
|
+
- hi@ruby.consulting
|
|
17
17
|
executables: []
|
|
18
18
|
extensions: []
|
|
19
19
|
extra_rdoc_files: []
|
|
@@ -44,7 +44,7 @@ require_paths:
|
|
|
44
44
|
- lib
|
|
45
45
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
46
46
|
requirements:
|
|
47
|
-
- - "
|
|
47
|
+
- - ">="
|
|
48
48
|
- !ruby/object:Gem::Version
|
|
49
49
|
version: '2.0'
|
|
50
50
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
@@ -53,9 +53,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '0'
|
|
55
55
|
requirements: []
|
|
56
|
-
rubygems_version: 3.
|
|
56
|
+
rubygems_version: 3.1.2
|
|
57
57
|
signing_key:
|
|
58
58
|
specification_version: 4
|
|
59
|
-
summary:
|
|
59
|
+
summary: Determines the very basic type of a code point
|
|
60
60
|
test_files:
|
|
61
61
|
- spec/unicode_types_spec.rb
|