unicode-numeric_value 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: baa2b3a48cf95635b1640a31208daa6fb69ed627
4
- data.tar.gz: 82ea3bf5b70c63065c2f7f61b75fd891c340c781
3
+ metadata.gz: 40d27352ed4f74a379c78da720f4242a07fedfa9
4
+ data.tar.gz: '08b4ab4b9082314e09dc556d807e921ed82b8f7f'
5
5
  SHA512:
6
- metadata.gz: 8b8d0dc47c3dcaccbdd1ab01163132f88dd24b46896849dd7b52762a34b5827c5c1a30addd36788095b66ea08b43a44d5e9e61997c49a00549860b60e1c8f358
7
- data.tar.gz: 35934295da862ef550a9cf446572fef74b5b25dd98e4f16d39584caba9ec076761f1d6014c059506094c076070bd315168e3fff18bc9421154b18340c91ff82d
6
+ metadata.gz: cf5881677c5053d36831314650f081a696aa92a3d19b8fda27f7ef188bd94f790e4b9fbae1e82f1930755725c9f991b1e5628af352bc5f1b0f31614ecf1b2b1a
7
+ data.tar.gz: 75b2103210a869781c2ba4fe4fb0a14db58f17841c8bc60adb213940bf275c1d4e37b1413d109390c34c53b6fde8cb62801404e4fd80d3f78f7d01d0b98e6e2e
Binary file
@@ -4,18 +4,14 @@ language: ruby
4
4
  script: bundle exec ruby spec/unicode_numeric_value_spec.rb
5
5
 
6
6
  rvm:
7
- - 2.3.0
7
+ - 2.4.1
8
+ - 2.3.4
8
9
  - 2.2
9
10
  - 2.1
10
11
  - ruby-head
11
- - rbx-2
12
12
  - jruby-head
13
- - jruby-9.0.5.0
14
-
15
- cache:
16
- - bundler
13
+ - jruby-9.1.12.0
17
14
 
18
15
  matrix:
19
16
  allow_failures:
20
17
  - rvm: jruby-head
21
- - rvm: rbx-2
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.3.0
4
+
5
+ * Unicode 10
6
+
3
7
  ### 1.2.0
4
8
 
5
9
  * Support Unicode 9.0
data/Gemfile CHANGED
@@ -3,3 +3,4 @@ source 'https://rubygems.org'
3
3
  gemspec
4
4
 
5
5
  gem 'minitest'
6
+ gem 'rake'
data/README.md CHANGED
@@ -2,9 +2,9 @@
2
2
 
3
3
  Convert a Unicode character into its numeric value.
4
4
 
5
- Unicode version: **9.0.0**
5
+ Unicode version: **10.0.0**
6
6
 
7
- Supported Rubies: **2.3**, **2.2**, **2.1**
7
+ Supported Rubies: **2.4**, **2.3**, **2.2**, **2.1**
8
8
 
9
9
  ## Gemfile
10
10
 
@@ -1370,6 +1370,16 @@ Codepoint | Character | Numeric Value | Name
1370
1370
  U+11C6A | đ‘±Ș | 80 | BHAIKSUKI NUMBER EIGHTY
1371
1371
  U+11C6B | 𑱫 | 90 | BHAIKSUKI NUMBER NINETY
1372
1372
  U+11C6C | 𑱏 | 100 | BHAIKSUKI HUNDREDS UNIT MARK
1373
+ U+11D50 | 𑔐 | 0 | MASARAM GONDI DIGIT ZERO
1374
+ U+11D51 | đ‘”‘ | 1 | MASARAM GONDI DIGIT ONE
1375
+ U+11D52 | đ‘”’ | 2 | MASARAM GONDI DIGIT TWO
1376
+ U+11D53 | đ‘”“ | 3 | MASARAM GONDI DIGIT THREE
1377
+ U+11D54 | đ‘”” | 4 | MASARAM GONDI DIGIT FOUR
1378
+ U+11D55 | đ‘”• | 5 | MASARAM GONDI DIGIT FIVE
1379
+ U+11D56 | đ‘”– | 6 | MASARAM GONDI DIGIT SIX
1380
+ U+11D57 | đ‘”— | 7 | MASARAM GONDI DIGIT SEVEN
1381
+ U+11D58 | đ‘”˜ | 8 | MASARAM GONDI DIGIT EIGHT
1382
+ U+11D59 | đ‘”™ | 9 | MASARAM GONDI DIGIT NINE
1373
1383
  U+12400 | 𒐀 | 2 | CUNEIFORM NUMERIC SIGN TWO ASH
1374
1384
  U+12401 | 𒐁 | 3 | CUNEIFORM NUMERIC SIGN THREE ASH
1375
1385
  U+12402 | 𒐂 | 4 | CUNEIFORM NUMERIC SIGN FOUR ASH
@@ -1625,6 +1635,7 @@ Codepoint | Character | Numeric Value | Name
1625
1635
  U+2626D | 𩉭 | 4 | CJK UNIFIED IDEOGRAPH-2626D
1626
1636
  U+2F890 | 𯹐 | 9 | CJK COMPATIBILITY IDEOGRAPH-2F890
1627
1637
 
1638
+
1628
1639
  See [unicode-x](https://github.com/janlelis/unicode-x) for more Unicode related micro libraries.
1629
1640
 
1630
1641
  ## MIT License
@@ -1,7 +1,7 @@
1
1
  module Unicode
2
2
  module NumericValue
3
- VERSION = "1.2.0".freeze
4
- UNICODE_VERSION = "9.0.0".freeze
3
+ VERSION = "1.3.0".freeze
4
+ UNICODE_VERSION = "10.0.0".freeze
5
5
  DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + '/../../../data/').freeze
6
6
  INDEX_FILENAME = (DATA_DIRECTORY + '/numeric_value.marshal.gz').freeze
7
7
  end
metadata CHANGED
@@ -1,22 +1,23 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicode-numeric_value
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.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: 2016-06-22 00:00:00.000000000 Z
11
+ date: 2017-06-19 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: "[Unicode 9.0.0] Convert a Unicode character into its numeric value."
13
+ description: "[Unicode 10.0.0] Convert a Unicode character into its numeric value."
14
14
  email:
15
15
  - mail@janlelis.de
16
16
  executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
+ - ".README.md.swp"
20
21
  - ".gitignore"
21
22
  - ".travis.yml"
22
23
  - CHANGELOG.md
@@ -54,7 +55,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
54
55
  version: '0'
55
56
  requirements: []
56
57
  rubyforge_project:
57
- rubygems_version: 2.5.1
58
+ rubygems_version: 2.6.11
58
59
  signing_key:
59
60
  specification_version: 4
60
61
  summary: Convert a Unicode character into its numeric value.