unicode-numeric_value 1.3.0 → 1.3.1

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
- SHA1:
3
- metadata.gz: 40d27352ed4f74a379c78da720f4242a07fedfa9
4
- data.tar.gz: '08b4ab4b9082314e09dc556d807e921ed82b8f7f'
2
+ SHA256:
3
+ metadata.gz: 065b8b01942d545ccf3d760fa6bf23c05637f98c3ba0723d53d2a2279567ee28
4
+ data.tar.gz: 2f3a7885d50ba51afb953b3cad3ab3313da3248d927d8c91423d184aa76220a9
5
5
  SHA512:
6
- metadata.gz: cf5881677c5053d36831314650f081a696aa92a3d19b8fda27f7ef188bd94f790e4b9fbae1e82f1930755725c9f991b1e5628af352bc5f1b0f31614ecf1b2b1a
7
- data.tar.gz: 75b2103210a869781c2ba4fe4fb0a14db58f17841c8bc60adb213940bf275c1d4e37b1413d109390c34c53b6fde8cb62801404e4fd80d3f78f7d01d0b98e6e2e
6
+ metadata.gz: d80143808a09106aadf937e3c6f93538b4028709ff691e6a86c9f9532707167198cc71a992ee4dde80c23ef20212c37f0eeb0495249ab616290aa6ccf8c0068d
7
+ data.tar.gz: 2f0e6707942ce13f45a2c7e8b594a5ad57374952fdf2d77ec2904004aabab7b356c73f30322f587f811b86119f9691d5b18f84f7bfc115b4b59a41ed33128490
@@ -4,14 +4,19 @@ language: ruby
4
4
  script: bundle exec ruby spec/unicode_numeric_value_spec.rb
5
5
 
6
6
  rvm:
7
- - 2.4.1
8
- - 2.3.4
7
+ - ruby-head
8
+ - 2.5.1
9
+ - 2.4.4
10
+ - 2.3.7
9
11
  - 2.2
10
12
  - 2.1
11
- - ruby-head
13
+ - 2.0
12
14
  - jruby-head
13
- - jruby-9.1.12.0
15
+ - jruby-9.1.16.0
14
16
 
15
17
  matrix:
16
18
  allow_failures:
19
+ - rvm: 2.2
20
+ - rvm: 2.1
21
+ - rvm: 2.0
17
22
  - rvm: jruby-head
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.3.1
4
+
5
+ * Use `Gem::Util` for `gunzip`, removes deprecation warning
6
+
3
7
  ### 1.3.0
4
8
 
5
9
  * Unicode 10
data/README.md CHANGED
@@ -4,7 +4,9 @@ Convert a Unicode character into its numeric value.
4
4
 
5
5
  Unicode version: **10.0.0**
6
6
 
7
- Supported Rubies: **2.4**, **2.3**, **2.2**, **2.1**
7
+ Supported Rubies: **2.5**, **2.4**, **2.3**
8
+
9
+ Old Rubies that might still work: **2.2**, **2.1**, **2.0**
8
10
 
9
11
  ## Gemfile
10
12
 
@@ -1,6 +1,6 @@
1
1
  module Unicode
2
2
  module NumericValue
3
- VERSION = "1.3.0".freeze
3
+ VERSION = "1.3.1".freeze
4
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
@@ -2,6 +2,6 @@ require_relative 'constants'
2
2
 
3
3
  module Unicode
4
4
  module NumericValue
5
- INDEX = Marshal.load(Gem.gunzip(File.binread(INDEX_FILENAME)))
5
+ INDEX = Marshal.load(Gem::Util.gunzip(File.binread(INDEX_FILENAME)))
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicode-numeric_value
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lelis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-06-19 00:00:00.000000000 Z
11
+ date: 2018-04-19 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: "[Unicode 10.0.0] Convert a Unicode character into its numeric value."
14
14
  email:
@@ -17,7 +17,6 @@ executables: []
17
17
  extensions: []
18
18
  extra_rdoc_files: []
19
19
  files:
20
- - ".README.md.swp"
21
20
  - ".gitignore"
22
21
  - ".travis.yml"
23
22
  - CHANGELOG.md
@@ -55,7 +54,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
55
54
  version: '0'
56
55
  requirements: []
57
56
  rubyforge_project:
58
- rubygems_version: 2.6.11
57
+ rubygems_version: 2.7.6
59
58
  signing_key:
60
59
  specification_version: 4
61
60
  summary: Convert a Unicode character into its numeric value.
Binary file