unicode-x 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -0
- data/lib/unicode/x.rb +2 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 954d2191d21a04b34e7bb9e2c3183b4fbc71378f
|
4
|
+
data.tar.gz: 181dce00750671cd5fb3f01f7a4aabc12f56ba9c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aca0a447c4892487e654c93c3e328a97abb8f58f47299f16bd277b4f659e6af8dff72ea880a766f085454f7d9897ccdb52e718694bf7df60c50231ec5aaa2598
|
7
|
+
data.tar.gz: 2a629bbc84430b43e36e999d0f48001f6b316a728d36bb2e170e4add75c9ac91ffe03cb812979aea6f1de03d0fad30042dff1921eeb8a0885869460af2be6074
|
data/README.md
CHANGED
@@ -8,5 +8,6 @@ Library | Info
|
|
8
8
|
[unicode-categories](https://github.com/janlelis/unicode-categories) | General Categories
|
9
9
|
[unicode-confusable](https://github.com/janlelis/unicode-confusable) | Confusable detection
|
10
10
|
[unicode-display_width](https://github.com/janlelis/unicode-display_width) | Monospace character width
|
11
|
+
[unicode-name](https://github.com/janlelis/unicode-name) | Unicode character name
|
11
12
|
[unicode_normalize](https://github.com/ruby/ruby/blob/trunk/lib/unicode_normalize/normalize.rb) | Unicode normalization
|
12
13
|
[unicode-scripts](https://github.com/janlelis/unicode-scripts) | Scripts and Script_Extensions
|
data/lib/unicode/x.rb
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
module Unicode
|
2
2
|
module X
|
3
|
-
VERSION = "1.0.
|
3
|
+
VERSION = "1.0.1".freeze
|
4
4
|
end
|
5
5
|
end
|
6
6
|
|
@@ -8,6 +8,7 @@ require "unicode/blocks"
|
|
8
8
|
require "unicode/categories"
|
9
9
|
require "unicode/confusable"
|
10
10
|
require "unicode/display_width"
|
11
|
+
require "unicode/name"
|
11
12
|
require "unicode/scripts"
|
12
13
|
|
13
14
|
begin
|