unicode-scripts 1.4.0 → 1.5.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 -6
- data/CHANGELOG.md +4 -0
- data/Gemfile +1 -0
- data/README.md +1 -1
- data/data/scripts.marshal.gz +0 -0
- data/lib/unicode/scripts/constants.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a89b11f4b699f04e52be53831a5f6aac47ed81cfaa1efbdef4a84a0a6683e7cb
|
|
4
|
+
data.tar.gz: f8b82fbc52d967ae71b967e125305185d8a982774bfd2ba68516978ab277b735
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: daa11e76d77f8bc7c420ce212d6c1e195e5b1f72ee87873c758ad9e29c8406fcd5775ea76266bec62d9a679c4d1734a0b69d1999677fe2e19fcbafee85bb7f23
|
|
7
|
+
data.tar.gz: b88820189f7332c7a7053c10ef4a28111f4a0532467c6378e8c6fa4dd144ead1cc408161cc51b0ba5be5805c12dbdc29eba0c74d360c119d2b6e31d0af2e03a6
|
data/.travis.yml
CHANGED
|
@@ -4,20 +4,20 @@ language: ruby
|
|
|
4
4
|
script: bundle exec ruby spec/unicode_scripts_spec.rb
|
|
5
5
|
|
|
6
6
|
rvm:
|
|
7
|
-
- 2.6
|
|
8
|
-
- 2.5
|
|
9
|
-
- 2.4
|
|
10
|
-
- 2.3
|
|
7
|
+
- 2.6
|
|
8
|
+
- 2.5
|
|
9
|
+
- 2.4
|
|
10
|
+
- 2.3
|
|
11
11
|
- 2.2
|
|
12
12
|
- 2.1
|
|
13
13
|
- 2.0
|
|
14
14
|
- ruby-head
|
|
15
15
|
- jruby-head
|
|
16
|
-
- jruby-9.2.
|
|
16
|
+
- jruby-9.2.7.0
|
|
17
17
|
|
|
18
18
|
matrix:
|
|
19
19
|
allow_failures:
|
|
20
|
-
- rvm: 2.3
|
|
20
|
+
- rvm: 2.3
|
|
21
21
|
- rvm: 2.2
|
|
22
22
|
- rvm: 2.1
|
|
23
23
|
- rvm: 2.0
|
data/CHANGELOG.md
CHANGED
data/Gemfile
CHANGED
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Retrieve the [Unicode script(s)](https://en.wikipedia.org/wiki/Script_%28Unicode%29) a string belongs to. Can also return the *Script_Extension* property which is defined as characters which are "commonly used with more than one script, but with a limited number of scripts".
|
|
4
4
|
|
|
5
|
-
Unicode version: **12.
|
|
5
|
+
Unicode version: **12.1.0** (May 2019)
|
|
6
6
|
|
|
7
7
|
Supported Rubies: **2.6**, **2.5**, **2.4**
|
|
8
8
|
|
data/data/scripts.marshal.gz
CHANGED
|
Binary file
|
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
module Unicode
|
|
4
4
|
module Scripts
|
|
5
|
-
VERSION = "1.
|
|
6
|
-
UNICODE_VERSION = "12.
|
|
5
|
+
VERSION = "1.5.0"
|
|
6
|
+
UNICODE_VERSION = "12.1.0"
|
|
7
7
|
DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + "/../../../data/").freeze
|
|
8
8
|
INDEX_FILENAME = (DATA_DIRECTORY + "/scripts.marshal.gz").freeze
|
|
9
9
|
end
|
metadata
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: unicode-scripts
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.5.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: 2019-
|
|
11
|
+
date: 2019-05-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies: []
|
|
13
|
-
description: "[Unicode 12.
|
|
13
|
+
description: "[Unicode 12.1.0] Retrieve the Unicode script(s) a string belongs to.
|
|
14
14
|
Can also return the Script_Extension property which is defined as characters which
|
|
15
15
|
are 'commonly used with more than one script, but with a limited number of scripts'. "
|
|
16
16
|
email:
|
|
@@ -54,7 +54,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
55
|
version: '0'
|
|
56
56
|
requirements: []
|
|
57
|
-
rubygems_version: 3.0.
|
|
57
|
+
rubygems_version: 3.0.3
|
|
58
58
|
signing_key:
|
|
59
59
|
specification_version: 4
|
|
60
60
|
summary: Which script(s) does a Unicode string belong to?
|