unicode-age 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 +19 -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 +22 -0
- data/Rakefile +30 -0
- data/lib/unicode/age.rb +33 -0
- data/lib/unicode/age/string_ext.rb +7 -0
- data/lib/unicode/age/version.rb +7 -0
- data/spec/unicode_age_spec.rb +19 -0
- data/unicode-age.gemspec +21 -0
- metadata +60 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: a2c8e1e8416c898127a6082bbaf285368937ce3b
|
4
|
+
data.tar.gz: 4efb62d71b009a46c7d9bd560725976b309195d3
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: b281c57aa5db7f8a718baabd968b0b513fb6970ee6a92d0f6d6976cb1fe68df32381a2dcdee6d8335efcbed3cf053881e7cfbbf7c76393a7d9e72ca2b9537755
|
7
|
+
data.tar.gz: 3361b9267a41d94716ad80f166a187ba5fc21d6da47669c8dbbb2b5a76315347950aa1524b76bf113da5a8f3dc2cd23a3476966ce6acfc682bdbef0355353b29
|
data/.gitignore
ADDED
data/.travis.yml
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
sudo: false
|
2
|
+
language: ruby
|
3
|
+
|
4
|
+
script: bundle exec ruby spec/unicode_age_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
|
+
# fast_finish: true
|
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,22 @@
|
|
1
|
+
# Unicode::Age [![[version]](https://badge.fury.io/rb/unicode-age.svg)](http://badge.fury.io/rb/unicode-age) [![[travis]](https://travis-ci.org/janlelis/unicode-age.png)](https://travis-ci.org/janlelis/unicode-age)
|
2
|
+
|
3
|
+
A micromodule to detect which Unicode version is required to display a string.
|
4
|
+
|
5
|
+
```ruby
|
6
|
+
Unicode::Age.of "A" # => 1.1
|
7
|
+
Unicode::Age.of "ℜսᖯʏ" # => 3.0
|
8
|
+
Unicode::Age.of "ℜ𝘂ᖯʏ" # => 3.1
|
9
|
+
Unicode::Age.of "🚡" # => 6.0
|
10
|
+
Unicode::Age.of "🛲" # => 7.0
|
11
|
+
Unicode::Age.of "🌮 " # => 8.0
|
12
|
+
Unicode::Age.of "\u{10FFFF}" # => nil
|
13
|
+
Unicode::Age.of "\u{10FFFD}" # => 2.0
|
14
|
+
```
|
15
|
+
|
16
|
+
Characters of status "Unassigned" (Unicode General Category of **Cn**) will return `nil`.
|
17
|
+
|
18
|
+
Unicode version: **8.0.0**
|
19
|
+
|
20
|
+
## MIT License
|
21
|
+
|
22
|
+
Copyright (C) 2016 Jan Lelis <http://janlelis.com>. Released under the MIT license.
|
data/Rakefile
ADDED
@@ -0,0 +1,30 @@
|
|
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
|
+
# # #
|
12
|
+
# Gem build and install task
|
13
|
+
|
14
|
+
desc info
|
15
|
+
task :gem do
|
16
|
+
puts info + "\n\n"
|
17
|
+
print " "; sh "gem build #{gemspec_file}"
|
18
|
+
FileUtils.mkdir_p 'pkg'
|
19
|
+
FileUtils.mv "#{gemspec.name}-#{gemspec.version}.gem", 'pkg'
|
20
|
+
puts; sh %{gem install --no-document pkg/#{gemspec.name}-#{gemspec.version}.gem}
|
21
|
+
end
|
22
|
+
|
23
|
+
|
24
|
+
# # #
|
25
|
+
# Start an IRB session with the gem loaded
|
26
|
+
|
27
|
+
desc "#{gemspec.name} | IRB"
|
28
|
+
task :irb do
|
29
|
+
sh "irb -I ./lib -r #{gemspec.name.gsub '-','/'}"
|
30
|
+
end
|
data/lib/unicode/age.rb
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
require_relative "age/version"
|
2
|
+
|
3
|
+
module Unicode
|
4
|
+
module Age
|
5
|
+
KNOWN_UNICODE_VERSIONS = [
|
6
|
+
1.1,
|
7
|
+
2.0,
|
8
|
+
2.1,
|
9
|
+
3.0,
|
10
|
+
3.1,
|
11
|
+
3.2,
|
12
|
+
4.0,
|
13
|
+
4.1,
|
14
|
+
5.0,
|
15
|
+
5.1,
|
16
|
+
5.2,
|
17
|
+
6.0,
|
18
|
+
6.1,
|
19
|
+
6.2,
|
20
|
+
6.3,
|
21
|
+
7.0,
|
22
|
+
8.0,
|
23
|
+
].freeze
|
24
|
+
|
25
|
+
def self.of(string)
|
26
|
+
return nil if string =~ /\A\p{Unassigned}*\z/
|
27
|
+
KNOWN_UNICODE_VERSIONS.find{ |uv|
|
28
|
+
string =~ Regexp.compile('\A\p{age=%.1f}*\z' % uv)
|
29
|
+
}
|
30
|
+
end
|
31
|
+
end
|
32
|
+
end
|
33
|
+
|
@@ -0,0 +1,19 @@
|
|
1
|
+
require_relative "../lib/unicode/age"
|
2
|
+
require "minitest/autorun"
|
3
|
+
|
4
|
+
describe Unicode::Age do
|
5
|
+
it "returns required Unicode version to display a string" do
|
6
|
+
assert_equal 1.1, Unicode::Age.of("A")
|
7
|
+
assert_equal 2.0, Unicode::Age.of("\u{10FFFD}")
|
8
|
+
assert_equal 3.0, Unicode::Age.of("ℜսᖯʏ")
|
9
|
+
assert_equal 3.1, Unicode::Age.of("ℜ𝘂ᖯʏ")
|
10
|
+
assert_equal 6.0, Unicode::Age.of("🚡")
|
11
|
+
assert_equal 7.0, Unicode::Age.of("🛲")
|
12
|
+
assert_equal 8.0, Unicode::Age.of("🌮 ")
|
13
|
+
end
|
14
|
+
|
15
|
+
it "returns nil for unassigned codepoints" do
|
16
|
+
assert_equal nil, Unicode::Age.of("\u{10FFFF}")
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
data/unicode-age.gemspec
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
|
3
|
+
require File.dirname(__FILE__) + "/lib/unicode/age/version"
|
4
|
+
|
5
|
+
Gem::Specification.new do |gem|
|
6
|
+
gem.name = "unicode-age"
|
7
|
+
gem.version = Unicode::Age::VERSION
|
8
|
+
gem.summary = "Determine required Unicode version of a string."
|
9
|
+
gem.description = "A micromodule to detect which Unicode version is required to display a string."
|
10
|
+
gem.authors = ["Jan Lelis"]
|
11
|
+
gem.email = ["mail@janlelis.de"]
|
12
|
+
gem.homepage = "https://github.com/janlelis/unicode-age"
|
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,60 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: unicode-age
|
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-03-28 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: A micromodule to detect which Unicode version is required to display
|
14
|
+
a string.
|
15
|
+
email:
|
16
|
+
- mail@janlelis.de
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- ".gitignore"
|
22
|
+
- ".travis.yml"
|
23
|
+
- CHANGELOG.md
|
24
|
+
- CODE_OF_CONDUCT.md
|
25
|
+
- Gemfile
|
26
|
+
- MIT-LICENSE.txt
|
27
|
+
- README.md
|
28
|
+
- Rakefile
|
29
|
+
- lib/unicode/age.rb
|
30
|
+
- lib/unicode/age/string_ext.rb
|
31
|
+
- lib/unicode/age/version.rb
|
32
|
+
- spec/unicode_age_spec.rb
|
33
|
+
- unicode-age.gemspec
|
34
|
+
homepage: https://github.com/janlelis/unicode-age
|
35
|
+
licenses:
|
36
|
+
- MIT
|
37
|
+
metadata: {}
|
38
|
+
post_install_message:
|
39
|
+
rdoc_options: []
|
40
|
+
require_paths:
|
41
|
+
- lib
|
42
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '2.0'
|
47
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
48
|
+
requirements:
|
49
|
+
- - ">="
|
50
|
+
- !ruby/object:Gem::Version
|
51
|
+
version: '0'
|
52
|
+
requirements: []
|
53
|
+
rubyforge_project:
|
54
|
+
rubygems_version: 2.5.1
|
55
|
+
signing_key:
|
56
|
+
specification_version: 4
|
57
|
+
summary: Determine required Unicode version of a string.
|
58
|
+
test_files:
|
59
|
+
- spec/unicode_age_spec.rb
|
60
|
+
has_rdoc:
|