unicode-sequence_name 1.1.0 → 1.1.1

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
- SHA1:
3
- metadata.gz: 875631b3993f98827117b10978ddff37fbb7a07f
4
- data.tar.gz: 7e8bbe25014eee1947e8eb954f7b7a0f306caa3c
2
+ SHA256:
3
+ metadata.gz: ea2fcd89b12baf504b5da8cb08b81658d22226bdddae869f0fc07675bbdba9b1
4
+ data.tar.gz: de0f8c9c5a2ce9bf0a622c925b6e2d9e7a50359fb705c888772f833766059a00
5
5
  SHA512:
6
- metadata.gz: 13ca44101a13312c4620c7ebaf396454a814f53815d6aa1d4d44f3b296bacab82e1c0b26563899a312689c0fb9f0980ac2f3bf3e13275c6530abee76ef1f58d9
7
- data.tar.gz: a627d2292d775806d6ac4729709e805c11c541f5cab0240b60e075d629921ed76b98956360ff518ab6ef4ce72c7073575f75ce360dfc0ee54260ced89f12812b
6
+ metadata.gz: b1d4f74e1e2de536d5651fbef3be831541df6bf8b6a2eca32c0c03d7742e9c778d1f2bc5a58b842ae07ffd7ed8ebcc99be5f9333e034704f52c892d8dfdf1edb
7
+ data.tar.gz: adf001ff07d1d731799c6dcafbf7fec956654a1152f0b58d6727ddbd6492a5ac1bd7f42fd0bcefe962ab061e816bcbb134c52573a1789bc03ea2f056c8719f62
data/.travis.yml CHANGED
@@ -2,17 +2,19 @@ sudo: false
2
2
  language: ruby
3
3
 
4
4
  rvm:
5
- - 2.4.1
6
- - 2.3.4
5
+ - ruby-head
6
+ - 2.5.1
7
+ - 2.4.4
8
+ - 2.3.7
7
9
  - 2.2
8
10
  - 2.1
9
- - ruby-head
11
+ - 2.0
10
12
  - jruby-head
11
- - jruby-9.1.8.0
12
-
13
- cache:
14
- - bundler
13
+ - jruby-9.1.16.0
15
14
 
16
15
  matrix:
17
16
  allow_failures:
17
+ - rvm: 2.2
18
+ - rvm: 2.1
19
+ - rvm: 2.0
18
20
  - rvm: jruby-head
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.1.1
4
+
5
+ * Use `Gem::Util` for `gunzip`, removes deprecation warning
6
+
3
7
  ### 1.1.0
4
8
 
5
9
  * Unicode 10
data/MIT-LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2017 Jan Lelis, mail@janlelis.de
1
+ Copyright (c) 2017-2018 Jan Lelis, mail@janlelis.de
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
data/README.md CHANGED
@@ -6,7 +6,9 @@ Unicode version: **10.0.0**
6
6
 
7
7
  Emoji version: **5.0**
8
8
 
9
- Supported Rubies: **2.4**, **2.3**, **2.2**, **2.1**
9
+ Supported Rubies: **2.5**, **2.4**, **2.3**
10
+
11
+ Old Rubies but might still work: **2.2**, **2.1**, **2.0**
10
12
 
11
13
  ## Usage
12
14
 
@@ -23,11 +25,11 @@ Unicode::SequenceName.of "🏴󠁧󠁢󠁳󠁣󠁴󠁿" # => "SCOTLAND"
23
25
 
24
26
  ## Also See
25
27
 
26
- - [uniscribe](https://github.com/janlelis/unicode-x) - cli utility that makes use of unicode-sequence-name
28
+ - [uniscribe](https://github.com/janlelis/uniscribe) - cli utility that makes use of unicode-sequence-name
27
29
  - [unicode-name](https://github.com/janlelis/unicode-name) - single codepoint names
28
30
  - [unicode-x](https://github.com/janlelis/unicode-x) - more Unicode related micro libraries
29
31
 
30
32
  ## MIT License
31
33
 
32
- - Copyright (C) 2017 Jan Lelis <http://janlelis.com>. Released under the MIT license.
34
+ - Copyright (C) 2017-2018 Jan Lelis <http://janlelis.com>. Released under the MIT license.
33
35
  - Unicode data: http://www.unicode.org/copyright.html#Exhibit1
@@ -1,6 +1,6 @@
1
1
  module Unicode
2
2
  module SequenceName
3
- VERSION = "1.1.0".freeze
3
+ VERSION = "1.1.1".freeze
4
4
  UNICODE_VERSION = "10.0.0".freeze
5
5
  EMOJI_VERSION = "5.0".freeze
6
6
  DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + '/../../../data/').freeze
@@ -2,6 +2,6 @@ require_relative 'constants'
2
2
 
3
3
  module Unicode
4
4
  module SequenceName
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-sequence_name
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.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] Returns name of a Unicode codepoint sequence, if one
14
14
  exists"
@@ -54,7 +54,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
54
54
  version: '0'
55
55
  requirements: []
56
56
  rubyforge_project:
57
- rubygems_version: 2.6.11
57
+ rubygems_version: 2.7.6
58
58
  signing_key:
59
59
  specification_version: 4
60
60
  summary: Returns name of a Unicode codepoint sequence, if one exists