unicode-name 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +2 -0
- data/.travis.yml +21 -0
- data/CHANGELOG.md +6 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +5 -0
- data/MIT-LICENSE.txt +20 -0
- data/README.md +30 -0
- data/Rakefile +37 -0
- data/data/name.marshal.gz +0 -0
- data/lib/unicode/name.rb +63 -0
- data/lib/unicode/name/constants.rb +9 -0
- data/lib/unicode/name/index.rb +7 -0
- data/lib/unicode/name/string_ext.rb +8 -0
- data/spec/.unicode_name_spec.rb.swp +0 -0
- data/spec/unicode_name_spec.rb +43 -0
- data/unicode-name.gemspec +21 -0
- metadata +63 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 661337ed0ad17a4c57245aebb540a70e9c3cd348
|
4
|
+
data.tar.gz: 7906428802e6fe31f8718b99ebf0d655558e1410
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 6088029d191d4d4e3320a60e7603dd9a9467725b1c44d893063ed23a94cc7ba2a14348679664a211a8c5f5e2b0a6aa402d32822bcfa28e3c75443daf5cfb3626
|
7
|
+
data.tar.gz: a5b4076597eb6dc9a3e84066906256aa1ac214728c88293ea33aef7d02b79db15554d85f187b5f51af2075ff9daf74c6ea29e52df9494c23e18707ab6a1f5278
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
sudo: false
|
2
|
+
language: ruby
|
3
|
+
|
4
|
+
script: bundle exec ruby spec/unicode_name_spec.rb
|
5
|
+
|
6
|
+
rvm:
|
7
|
+
- 2.3.0
|
8
|
+
- 2.2
|
9
|
+
- 2.1
|
10
|
+
- ruby-head
|
11
|
+
- rbx-2
|
12
|
+
- jruby-head
|
13
|
+
- jruby-9.0.5.0
|
14
|
+
|
15
|
+
cache:
|
16
|
+
- bundler
|
17
|
+
|
18
|
+
matrix:
|
19
|
+
allow_failures:
|
20
|
+
- rvm: jruby-head
|
21
|
+
- rvm: rbx-2
|
data/CHANGELOG.md
ADDED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at opensource@janlelis.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
ADDED
data/MIT-LICENSE.txt
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2016 Jan Lelis, mail@janlelis.de
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# Unicode::Name [![[version]](https://badge.fury.io/rb/unicode-name.svg)](http://badge.fury.io/rb/unicode-name) [![[travis]](https://travis-ci.org/janlelis/unicode-name.png)](https://travis-ci.org/janlelis/unicode-name)
|
2
|
+
|
3
|
+
Return Unicode character names and aliases.
|
4
|
+
|
5
|
+
Unicode version: **8.0.0**
|
6
|
+
|
7
|
+
Supported Rubies: **2.3**, **2.2**, **2.1**
|
8
|
+
|
9
|
+
## Usage
|
10
|
+
|
11
|
+
```ruby
|
12
|
+
require "unicode/name"
|
13
|
+
|
14
|
+
# Name
|
15
|
+
Unicode::Name.of "A" # => "LATIN CAPITAL LETTER A"
|
16
|
+
Unicode::Name.of "🚡" # => "AERIAL TRAMWAY"
|
17
|
+
|
18
|
+
# Aliases, by type
|
19
|
+
Unicode::Name.aliases "\t" # => {:control=>["CHARACTER TABULATION", "HORIZONTAL TABULATION"],
|
20
|
+
:abbreviation=>["HT", "TAB"]}
|
21
|
+
|
22
|
+
# Corrections (via .aliases[:correction], then name)
|
23
|
+
Unicode::Name.correct "A" # => "LATIN CAPITAL LETTER A"
|
24
|
+
Unicode::Name.correct "Æ¢" # => "LATIN CAPITAL LETTER GHA"
|
25
|
+
```
|
26
|
+
|
27
|
+
## MIT License
|
28
|
+
|
29
|
+
- Copyright (C) 2016 Jan Lelis <http://janlelis.com>. Released under the MIT license.
|
30
|
+
- Unicode data: http://www.unicode.org/copyright.html#Exhibit1
|
data/Rakefile
ADDED
@@ -0,0 +1,37 @@
|
|
1
|
+
# # #
|
2
|
+
# Get gemspec info
|
3
|
+
|
4
|
+
gemspec_file = Dir['*.gemspec'].first
|
5
|
+
gemspec = eval File.read(gemspec_file), binding, gemspec_file
|
6
|
+
info = "#{gemspec.name} | #{gemspec.version} | " \
|
7
|
+
"#{gemspec.runtime_dependencies.size} dependencies | " \
|
8
|
+
"#{gemspec.files.size} files"
|
9
|
+
|
10
|
+
# # #
|
11
|
+
# Gem build and install task
|
12
|
+
|
13
|
+
desc info
|
14
|
+
task :gem do
|
15
|
+
puts info + "\n\n"
|
16
|
+
print " "; sh "gem build #{gemspec_file}"
|
17
|
+
FileUtils.mkdir_p 'pkg'
|
18
|
+
FileUtils.mv "#{gemspec.name}-#{gemspec.version}.gem", 'pkg'
|
19
|
+
puts; sh %{gem install --no-document pkg/#{gemspec.name}-#{gemspec.version}.gem}
|
20
|
+
end
|
21
|
+
|
22
|
+
# # #
|
23
|
+
# Start an IRB session with the gem loaded
|
24
|
+
|
25
|
+
desc "#{gemspec.name} | IRB"
|
26
|
+
task :irb do
|
27
|
+
sh "irb -I ./lib -r #{gemspec.name.gsub '-','/'}"
|
28
|
+
end
|
29
|
+
|
30
|
+
# # #
|
31
|
+
# Run Specs
|
32
|
+
|
33
|
+
desc "#{gemspec.name} | Spec"
|
34
|
+
task :spec do
|
35
|
+
sh "for file in spec/*.rb; do ruby $file; done"
|
36
|
+
end
|
37
|
+
task default: :spec
|
Binary file
|
data/lib/unicode/name.rb
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
require_relative "name/constants"
|
2
|
+
|
3
|
+
module Unicode
|
4
|
+
module Name
|
5
|
+
# Don't overwrite Module.name
|
6
|
+
def self.unicode_name(char)
|
7
|
+
codepoint = char.unpack("U")[0]
|
8
|
+
require_relative "name/index" unless defined? ::Unicode::Name::INDEX
|
9
|
+
INDEX[:NAMES][codepoint]
|
10
|
+
end
|
11
|
+
class << self; alias of unicode_name; end
|
12
|
+
|
13
|
+
def self.correct(char)
|
14
|
+
codepoint = char.unpack("U")[0]
|
15
|
+
require_relative "name/index" unless defined? ::Unicode::Name::INDEX
|
16
|
+
if correction = INDEX[:ALIASES][codepoint] && INDEX[:ALIASES][codepoint][:correction][-1]
|
17
|
+
correction
|
18
|
+
else
|
19
|
+
INDEX[:NAMES][codepoint]
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def self.aliases(char)
|
24
|
+
codepoint = char.unpack("U")[0]
|
25
|
+
require_relative "name/index" unless defined? ::Unicode::Name::INDEX
|
26
|
+
INDEX[:ALIASES][codepoint]
|
27
|
+
end
|
28
|
+
|
29
|
+
=begin
|
30
|
+
def self.label(char)
|
31
|
+
codepoint = char.unpack("U")[0]
|
32
|
+
codepoint_pretty = codepoint.to_s(16).upcase
|
33
|
+
require_relative "name/index" unless defined? ::Unicode::Name::INDEX
|
34
|
+
require "unicode/types/index" unless defined? ::Unicode::Types::INDEX
|
35
|
+
case Unicode::Types.type(char)
|
36
|
+
when "Graphic", "Format"
|
37
|
+
nil
|
38
|
+
when "Control"
|
39
|
+
"<control-#{codepoint_pretty}>"
|
40
|
+
when "Private-use"
|
41
|
+
"<private-use-#{codepoint_pretty}>"
|
42
|
+
when "Surrogate"
|
43
|
+
"<surrogate-#{codepoint_pretty}>"
|
44
|
+
when "Noncharacter"
|
45
|
+
"<noncharacter-#{codepoint_pretty}>"
|
46
|
+
when "Reserved"
|
47
|
+
"<reserved-#{codepoint_pretty}>"
|
48
|
+
end
|
49
|
+
end
|
50
|
+
=end
|
51
|
+
|
52
|
+
def self.readable(char)
|
53
|
+
unicode_name(char) ||
|
54
|
+
( as = aliases(char) ) &&
|
55
|
+
( as[:control] && as[:control][0] ||
|
56
|
+
as[:figment] && as[:figment][0] ||
|
57
|
+
as[:alternate] && as[:alternate][0] ||
|
58
|
+
as[:abbreviation] && as[:abbreviation][0] ) #||
|
59
|
+
# label(char)
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
Binary file
|
@@ -0,0 +1,43 @@
|
|
1
|
+
require_relative "../lib/unicode/name"
|
2
|
+
require "minitest/autorun"
|
3
|
+
|
4
|
+
describe Unicode::Name do
|
5
|
+
describe ".name (alias .of)" do
|
6
|
+
it "will return name for that character" do
|
7
|
+
assert_equal "LATIN CAPITAL LETTER A", Unicode::Name.of("A")
|
8
|
+
assert_equal "AERIAL TRAMWAY", Unicode::Name.of("🚡")
|
9
|
+
assert_equal "REPLACEMENT CHARACTER", Unicode::Name.of("�")
|
10
|
+
end
|
11
|
+
|
12
|
+
it "will return nil for characters without name" do
|
13
|
+
assert_equal nil, Unicode::Name.of("\u{10c50}")
|
14
|
+
assert_equal nil, Unicode::Name.of("\0")
|
15
|
+
end
|
16
|
+
end
|
17
|
+
|
18
|
+
describe ".correct" do
|
19
|
+
it "usually just returns name" do
|
20
|
+
assert_equal "LATIN CAPITAL LETTER A", Unicode::Name.correct("A")
|
21
|
+
end
|
22
|
+
|
23
|
+
it "will return corrected name, if one exists" do
|
24
|
+
assert_equal "LATIN CAPITAL LETTER GHA", Unicode::Name.correct("Æ¢")
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe ".aliases" do
|
29
|
+
it "will return nil if no alias available" do
|
30
|
+
assert_equal nil, Unicode::Name.aliases("A")
|
31
|
+
end
|
32
|
+
|
33
|
+
it "will always return a Hash" do
|
34
|
+
assert_equal Hash, Unicode::Name.aliases("\0").class
|
35
|
+
end
|
36
|
+
|
37
|
+
it "will return aliases grouped by type" do
|
38
|
+
assert_equal ["NULL"], Unicode::Name.aliases("\0")[:control]
|
39
|
+
assert_equal ["NUL"], Unicode::Name.aliases("\0")[:abbreviation]
|
40
|
+
end
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
@@ -0,0 +1,21 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
require File.dirname(__FILE__) + "/lib/unicode/name/constants"
|
4
|
+
|
5
|
+
Gem::Specification.new do |gem|
|
6
|
+
gem.name = "unicode-name"
|
7
|
+
gem.version = Unicode::Name::VERSION
|
8
|
+
gem.summary = "Returns the name and aliases of a Unicode codepoint/character"
|
9
|
+
gem.description = "[Unicode version: #{Unicode::Name::UNICODE_VERSION}] Returns the name and aliases of a Unicode codepoint/character"
|
10
|
+
gem.authors = ["Jan Lelis"]
|
11
|
+
gem.email = ["mail@janlelis.de"]
|
12
|
+
gem.homepage = "https://github.com/janlelis/unicode-name"
|
13
|
+
gem.license = "MIT"
|
14
|
+
|
15
|
+
gem.files = Dir["{**/}{.*,*}"].select{ |path| File.file?(path) && path !~ /^pkg/ }
|
16
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
17
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
|
+
gem.require_paths = ["lib"]
|
19
|
+
|
20
|
+
gem.required_ruby_version = "~> 2.0"
|
21
|
+
end
|
metadata
ADDED
@@ -0,0 +1,63 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: unicode-name
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Jan Lelis
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2016-04-13 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: "[Unicode version: 8.0.0] Returns the name and aliases of a Unicode codepoint/character"
|
14
|
+
email:
|
15
|
+
- mail@janlelis.de
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- ".gitignore"
|
21
|
+
- ".travis.yml"
|
22
|
+
- CHANGELOG.md
|
23
|
+
- CODE_OF_CONDUCT.md
|
24
|
+
- Gemfile
|
25
|
+
- MIT-LICENSE.txt
|
26
|
+
- README.md
|
27
|
+
- Rakefile
|
28
|
+
- data/name.marshal.gz
|
29
|
+
- lib/unicode/name.rb
|
30
|
+
- lib/unicode/name/constants.rb
|
31
|
+
- lib/unicode/name/index.rb
|
32
|
+
- lib/unicode/name/string_ext.rb
|
33
|
+
- spec/.unicode_name_spec.rb.swp
|
34
|
+
- spec/unicode_name_spec.rb
|
35
|
+
- unicode-name.gemspec
|
36
|
+
homepage: https://github.com/janlelis/unicode-name
|
37
|
+
licenses:
|
38
|
+
- MIT
|
39
|
+
metadata: {}
|
40
|
+
post_install_message:
|
41
|
+
rdoc_options: []
|
42
|
+
require_paths:
|
43
|
+
- lib
|
44
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
45
|
+
requirements:
|
46
|
+
- - "~>"
|
47
|
+
- !ruby/object:Gem::Version
|
48
|
+
version: '2.0'
|
49
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: '0'
|
54
|
+
requirements: []
|
55
|
+
rubyforge_project:
|
56
|
+
rubygems_version: 2.6.3
|
57
|
+
signing_key:
|
58
|
+
specification_version: 4
|
59
|
+
summary: Returns the name and aliases of a Unicode codepoint/character
|
60
|
+
test_files:
|
61
|
+
- spec/.unicode_name_spec.rb.swp
|
62
|
+
- spec/unicode_name_spec.rb
|
63
|
+
has_rdoc:
|