uniscribe 1.1.0 → 1.2.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 +5 -5
- data/.travis.yml +7 -8
- data/CHANGELOG.md +4 -0
- data/MIT-LICENSE.txt +1 -1
- data/README.md +3 -2
- data/lib/uniscribe/version.rb +8 -6
- data/uniscribe.gemspec +4 -4
- metadata +13 -19
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 8096cc48e9f77948af932867820edd8d784d0801f80cd273b9e081187b69418a
|
|
4
|
+
data.tar.gz: da3c055793633763120945db5f9bc23fcba804ca1093360099558a9ee6b97f66
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3f6d97a20030ac99f93c26231bfc5080cb758b8f85dfffcbd66c21f932fe3b43d85b182a090641bc50de4874fe38d216e7fbc01838ac7951c117c8855217d03e
|
|
7
|
+
data.tar.gz: 12f646a896aac0be56d8b2f15f03f6009f8a7bca9c276049aff0571b37d134656c1fcfc27d233202403dba16ae50d4c610acb17dc74d1fdc002039a7263e15d7
|
data/.travis.yml
CHANGED
|
@@ -3,21 +3,20 @@ language: ruby
|
|
|
3
3
|
|
|
4
4
|
rvm:
|
|
5
5
|
- ruby-head
|
|
6
|
-
- 2.
|
|
7
|
-
- 2.
|
|
6
|
+
- 2.5.0
|
|
7
|
+
- 2.4.3
|
|
8
|
+
- 2.3.6
|
|
8
9
|
- 2.2
|
|
9
10
|
- 2.1
|
|
10
11
|
- 2.0
|
|
11
12
|
- jruby-head
|
|
12
|
-
- jruby-9.1.
|
|
13
|
-
|
|
14
|
-
cache:
|
|
15
|
-
- bundler
|
|
13
|
+
- jruby-9.1.15.0
|
|
16
14
|
|
|
17
15
|
matrix:
|
|
18
16
|
allow_failures:
|
|
19
|
-
- rvm: jruby-head
|
|
20
|
-
- rvm: jruby-9.1.8.0
|
|
21
17
|
- rvm: ruby-head
|
|
18
|
+
- rvm: 2.1
|
|
22
19
|
- rvm: 2.0
|
|
20
|
+
- rvm: jruby-head
|
|
21
|
+
- rvm: jruby-9.1.15.0
|
|
23
22
|
# fast_finish: true
|
data/CHANGELOG.md
CHANGED
data/MIT-LICENSE.txt
CHANGED
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Describes Unicode characters with their name and shows compositions.
|
|
4
4
|
|
|
5
|
-
- Helps you understand how glyphs and codepoints are
|
|
5
|
+
- Helps you understand how glyphs and codepoints are structured within the data
|
|
6
6
|
- Gives you the names of glyphs and codepoints, which can be used for further research
|
|
7
7
|
- Highlights invalid/special/blank codepoints
|
|
8
8
|
|
|
@@ -105,6 +105,7 @@ The proper detection of compositions / graphemes / combined characters depends o
|
|
|
105
105
|
|
|
106
106
|
Ruby | Unicode Version
|
|
107
107
|
-----|----------------
|
|
108
|
+
2.5 | 10.0.0
|
|
108
109
|
2.4 | 9.0.0
|
|
109
110
|
2.3 | 8.0.0
|
|
110
111
|
2.2 | 7.0.0
|
|
@@ -118,4 +119,4 @@ Also see
|
|
|
118
119
|
- [unicopy](https://github.com/janlelis/unicopy) - copy codepoints to clipboard
|
|
119
120
|
- [Unicode® Standard Annex #29: Unicode Text Segmentation](http://unicode.org/reports/tr29/)
|
|
120
121
|
|
|
121
|
-
Copyright (C) 2017 Jan Lelis <http://janlelis.com>. Released under the MIT license.
|
|
122
|
+
Copyright (C) 2017-2018 Jan Lelis <http://janlelis.com>. Released under the MIT license.
|
data/lib/uniscribe/version.rb
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
# frozen_string_literal: true
|
|
2
2
|
|
|
3
3
|
module Uniscribe
|
|
4
|
-
VERSION = "1.
|
|
5
|
-
UNICODE_VERSION = "
|
|
4
|
+
VERSION = "1.2.0"
|
|
5
|
+
UNICODE_VERSION = "11.0.0"
|
|
6
6
|
|
|
7
7
|
RUBY_UNICODE_VERSIONS = {
|
|
8
|
-
2.
|
|
9
|
-
2.
|
|
10
|
-
2.
|
|
11
|
-
2.
|
|
8
|
+
2.6 => "11.0.0",
|
|
9
|
+
2.5 => "10.0.0",
|
|
10
|
+
2.4 => "9.0.0",
|
|
11
|
+
2.3 => "8.0.0",
|
|
12
|
+
2.2 => "7.0.0",
|
|
13
|
+
2.1 => "6.1.0",
|
|
12
14
|
}.freeze
|
|
13
15
|
|
|
14
16
|
UNICODE_VERSION_GLYPH_DETECTION = RUBY_ENGINE == "ruby" && RUBY_UNICODE_VERSIONS[RUBY_VERSION.to_f]
|
data/uniscribe.gemspec
CHANGED
|
@@ -18,10 +18,10 @@ Gem::Specification.new do |gem|
|
|
|
18
18
|
gem.require_paths = ["lib"]
|
|
19
19
|
|
|
20
20
|
gem.required_ruby_version = "~> 2.1"
|
|
21
|
-
gem.add_dependency "unicode-name", "~> 1.
|
|
22
|
-
gem.add_dependency "unicode-sequence_name", "~> 1.
|
|
23
|
-
gem.add_dependency "unicode-display_width", "~> 1.
|
|
24
|
-
gem.add_dependency "unicode-emoji", "
|
|
21
|
+
gem.add_dependency "unicode-name", "~> 1.6"
|
|
22
|
+
gem.add_dependency "unicode-sequence_name", "~> 1.2"
|
|
23
|
+
gem.add_dependency "unicode-display_width", "~> 1.4"
|
|
24
|
+
gem.add_dependency "unicode-emoji", "~> 1.1"
|
|
25
25
|
gem.add_dependency "symbolify", "~> 1.3"
|
|
26
26
|
gem.add_dependency "characteristics", ">= 0.8", "< 2.0"
|
|
27
27
|
gem.add_dependency "paint", ">= 0.9", "< 3.0"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: uniscribe
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.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: 2018-06-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: unicode-name
|
|
@@ -16,62 +16,56 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '1.
|
|
19
|
+
version: '1.6'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '1.
|
|
26
|
+
version: '1.6'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: unicode-sequence_name
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '1.
|
|
33
|
+
version: '1.2'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '1.
|
|
40
|
+
version: '1.2'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: unicode-display_width
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '1.
|
|
47
|
+
version: '1.4'
|
|
48
48
|
type: :runtime
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: '1.
|
|
54
|
+
version: '1.4'
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: unicode-emoji
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
|
-
- - "
|
|
60
|
-
- !ruby/object:Gem::Version
|
|
61
|
-
version: '0.9'
|
|
62
|
-
- - "<"
|
|
59
|
+
- - "~>"
|
|
63
60
|
- !ruby/object:Gem::Version
|
|
64
|
-
version: '
|
|
61
|
+
version: '1.1'
|
|
65
62
|
type: :runtime
|
|
66
63
|
prerelease: false
|
|
67
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
68
65
|
requirements:
|
|
69
|
-
- - "
|
|
70
|
-
- !ruby/object:Gem::Version
|
|
71
|
-
version: '0.9'
|
|
72
|
-
- - "<"
|
|
66
|
+
- - "~>"
|
|
73
67
|
- !ruby/object:Gem::Version
|
|
74
|
-
version: '
|
|
68
|
+
version: '1.1'
|
|
75
69
|
- !ruby/object:Gem::Dependency
|
|
76
70
|
name: symbolify
|
|
77
71
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -183,7 +177,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
183
177
|
version: '0'
|
|
184
178
|
requirements: []
|
|
185
179
|
rubyforge_project:
|
|
186
|
-
rubygems_version: 2.6
|
|
180
|
+
rubygems_version: 2.7.6
|
|
187
181
|
signing_key:
|
|
188
182
|
specification_version: 4
|
|
189
183
|
summary: Describes Unicode characters.
|