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 +5 -5
- data/.travis.yml +9 -7
- data/CHANGELOG.md +4 -0
- data/MIT-LICENSE.txt +1 -1
- data/README.md +5 -3
- data/lib/unicode/sequence_name/constants.rb +1 -1
- data/lib/unicode/sequence_name/index.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: ea2fcd89b12baf504b5da8cb08b81658d22226bdddae869f0fc07675bbdba9b1
|
4
|
+
data.tar.gz: de0f8c9c5a2ce9bf0a622c925b6e2d9e7a50359fb705c888772f833766059a00
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
-
|
6
|
-
- 2.
|
5
|
+
- ruby-head
|
6
|
+
- 2.5.1
|
7
|
+
- 2.4.4
|
8
|
+
- 2.3.7
|
7
9
|
- 2.2
|
8
10
|
- 2.1
|
9
|
-
-
|
11
|
+
- 2.0
|
10
12
|
- jruby-head
|
11
|
-
- jruby-9.1.
|
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
data/MIT-LICENSE.txt
CHANGED
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.
|
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/
|
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
|
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.
|
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:
|
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
|
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
|