unicode-x 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 +4 -4
- data/CHANGELOG.md +4 -0
- data/README.md +4 -3
- data/lib/unicode/x.rb +2 -5
- data/lib/unicode/x/version.rb +5 -0
- data/unicode-x.gemspec +2 -1
- metadata +17 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 94cc89ee20b719736557af9969ea069fbcb2f160
|
4
|
+
data.tar.gz: 64e607dd0e30f95adee6787a0d89f2f9143c6c0d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2e45e5bb0a8e6a6e94674daafc0e6afb51ad73379df7eaac8b9e27ce23079eb40ddfea8e88133694eb24dfc5a540f9d3d1f86e073805566aa4c703c445a9aefc
|
7
|
+
data.tar.gz: 8a06fef5b9a2e56ffedc60f950017cfd67fbbc24814846a8173aa16314dc3e0bdbe843db05edc6891f996722a6f2608100426cb3da0fa7d1d809766c02c158f1
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Unicode
|
1
|
+
# Unicode::X
|
2
2
|
|
3
3
|
A collection of specific micro libraries providing data and algorithms that might be handy when working with Unicode characters in Ruby:
|
4
4
|
|
@@ -7,12 +7,13 @@ Library | Info
|
|
7
7
|
[unicode-blocks](https://github.com/janlelis/unicode-blocks) | Blocks
|
8
8
|
[unicode-categories](https://github.com/janlelis/unicode-categories) | General Categories
|
9
9
|
[unicode-confusable](https://github.com/janlelis/unicode-confusable) | Confusable detection
|
10
|
+
[unicode-emoji](https://github.com/janlelis/unicode-emoji) | Emoji data and regex
|
10
11
|
[unicode-display_width](https://github.com/janlelis/unicode-display_width) | Monospace character width
|
11
12
|
[unicode-name](https://github.com/janlelis/unicode-name) | Unicode codepoint name/alias/label
|
12
|
-
[unicode_normalize](https://github.com/ruby/ruby/blob/trunk/lib/unicode_normalize.rb) | Unicode normalization (**stdlib**)
|
13
|
+
[unicode_normalize](https://github.com/ruby/ruby/blob/trunk/lib/unicode_normalize.rb) | Unicode normalization (from **stdlib**)
|
13
14
|
[unicode-numeric_value](https://github.com/janlelis/unicode-numeric_value) | Convert a Unicode character into its numeric value
|
14
15
|
[unicode-scripts](https://github.com/janlelis/unicode-scripts) | Scripts and Script_Extensions
|
15
|
-
[unicode-sequence_name](https://github.com/janlelis/unicode-
|
16
|
+
[unicode-sequence_name](https://github.com/janlelis/unicode-sequence_name) | Codepoint sequence names
|
16
17
|
[unicode-types](https://github.com/janlelis/unicode-types) | Basic codepoint types
|
17
18
|
|
18
19
|
## Setup
|
data/lib/unicode/x.rb
CHANGED
@@ -1,12 +1,9 @@
|
|
1
|
-
|
2
|
-
module X
|
3
|
-
VERSION = "1.2.0".freeze
|
4
|
-
end
|
5
|
-
end
|
1
|
+
require_relative "x/version"
|
6
2
|
|
7
3
|
require "unicode/blocks"
|
8
4
|
require "unicode/categories"
|
9
5
|
require "unicode/confusable"
|
6
|
+
require "unicode/emoji"
|
10
7
|
require "unicode/display_width"
|
11
8
|
require "unicode/name"
|
12
9
|
require "unicode/sequence_name"
|
data/unicode-x.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
|
3
|
-
require File.dirname(__FILE__) + "/lib/unicode/x"
|
3
|
+
require File.dirname(__FILE__) + "/lib/unicode/x/version"
|
4
4
|
|
5
5
|
Gem::Specification.new do |gem|
|
6
6
|
gem.name = "unicode-x"
|
@@ -21,6 +21,7 @@ Gem::Specification.new do |gem|
|
|
21
21
|
gem.add_dependency "unicode-blocks", "~> 1.1"
|
22
22
|
gem.add_dependency "unicode-categories", "~> 1.1"
|
23
23
|
gem.add_dependency "unicode-confusable", "~> 1.1"
|
24
|
+
gem.add_dependency "unicode-emoji", "< 2.0"
|
24
25
|
gem.add_dependency "unicode-display_width", "~> 1.1"
|
25
26
|
gem.add_dependency "unicode-name", "~> 1.4"
|
26
27
|
gem.add_dependency "unicode-numeric_value", "~> 1.2"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unicode-x
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
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: 2017-04-
|
11
|
+
date: 2017-04-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: unicode-blocks
|
@@ -52,6 +52,20 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '1.1'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: unicode-emoji
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "<"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '2.0'
|
62
|
+
type: :runtime
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "<"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '2.0'
|
55
69
|
- !ruby/object:Gem::Dependency
|
56
70
|
name: unicode-display_width
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -149,6 +163,7 @@ files:
|
|
149
163
|
- README.md
|
150
164
|
- Rakefile
|
151
165
|
- lib/unicode/x.rb
|
166
|
+
- lib/unicode/x/version.rb
|
152
167
|
- unicode-x.gemspec
|
153
168
|
homepage: https://github.com/janlelis/unicode-x
|
154
169
|
licenses:
|