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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8882022a63cd2caef9118238dae75e3ea6f2c306556a458c4fc9d584503aaa8a
4
- data.tar.gz: 236d353516d78090e3a45a5076c4f839e9b5ac0f90e644675fb59e7d819d7880
3
+ metadata.gz: a89b11f4b699f04e52be53831a5f6aac47ed81cfaa1efbdef4a84a0a6683e7cb
4
+ data.tar.gz: f8b82fbc52d967ae71b967e125305185d8a982774bfd2ba68516978ab277b735
5
5
  SHA512:
6
- metadata.gz: b0c2b41bf6dc20bdd1a5c82c6681b55a409904af186224b64e4fe5f0d6a0dc24f49ca8aa391d4528878265ab19865db4a97b17006e84373ad26acce79504ad9b
7
- data.tar.gz: ae6e6ffb1dab3a8e068a8cf7f4c844826cd2f7357f9805be036f1477cef4f392d88ba0b4ac633cdc58e6d7913704d4a44af3874cf4477b21f92f3faee8b52b51
6
+ metadata.gz: daa11e76d77f8bc7c420ce212d6c1e195e5b1f72ee87873c758ad9e29c8406fcd5775ea76266bec62d9a679c4d1734a0b69d1999677fe2e19fcbafee85bb7f23
7
+ data.tar.gz: b88820189f7332c7a7053c10ef4a28111f4a0532467c6378e8c6fa4dd144ead1cc408161cc51b0ba5be5805c12dbdc29eba0c74d360c119d2b6e31d0af2e03a6
@@ -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.1
8
- - 2.5.3
9
- - 2.4.5
10
- - 2.3.8
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.6.0
16
+ - jruby-9.2.7.0
17
17
 
18
18
  matrix:
19
19
  allow_failures:
20
- - rvm: 2.3.8
20
+ - rvm: 2.3
21
21
  - rvm: 2.2
22
22
  - rvm: 2.1
23
23
  - rvm: 2.0
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.5.0
4
+
5
+ * Unicode 12.1
6
+
3
7
  ### 1.4.0
4
8
 
5
9
  * Unicode 12
data/Gemfile CHANGED
@@ -4,3 +4,4 @@ gemspec
4
4
 
5
5
  gem 'minitest'
6
6
  gem 'rake'
7
+ gem 'irb'
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.0.0** (March 2019)
5
+ Unicode version: **12.1.0** (May 2019)
6
6
 
7
7
  Supported Rubies: **2.6**, **2.5**, **2.4**
8
8
 
Binary file
@@ -2,8 +2,8 @@
2
2
 
3
3
  module Unicode
4
4
  module Scripts
5
- VERSION = "1.4.0"
6
- UNICODE_VERSION = "12.0.0"
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.0
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-03-05 00:00:00.000000000 Z
11
+ date: 2019-05-08 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: "[Unicode 12.0.0] Retrieve the Unicode script(s) a string belongs to.
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.1
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?