unicode-types 1.3.0 → 1.7.0

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
2
  SHA256:
3
- metadata.gz: 170edb02b23794b7f703934e6919b8a59628e0a041e823c14fabc05a3c502b4d
4
- data.tar.gz: e6489dc3d3cc39bf5478659b8701f401dc7fc43a1cac6985ef1b240c229ec266
3
+ metadata.gz: bb2fc8daadc9f49a2fb87c32b6a03818d1990aa9054eaf22571c9f13470d2e68
4
+ data.tar.gz: 3d7eccfb31adbb6a307f3246b7344957ba032df902aec2de70db80396affdb1e
5
5
  SHA512:
6
- metadata.gz: f819a26e75d74045a7f3f0a5ff76babfcbec149f0c015a10566e046d23d17cf4126812ccbc1c8763fdee562e2d02c18c8aeedf9a37fcbdc81ab46c4ced821122
7
- data.tar.gz: 90c0aa8901a5b60ac78d7a06f34cd859e3d4c1e6b243987edcf10785c560e4c6174107353d7de39103d0c646cc8a5fa74ab768e9e69fbd41c5bb7885fe6403c8
6
+ metadata.gz: 2e60a22be8a61f2e55e9ac80e65dbad51c3da6077253193c7aac832b3125f2497a4248fe67f5404878451f46c32d8d80d23f4054cf6d33eaa4ae8acbeba43dd4
7
+ data.tar.gz: 8ed348416b253ba38ec242c4f377f19006afeb0eea98ff0e46e3a0b402d4f36a9cf05442298c74c7855f232ed5259b998d0a71ee8d27ac6b0d4d5110eb920c45
data/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.7.0
4
+
5
+ - Unicode 14
6
+
7
+ ### 1.6.0
8
+
9
+ - Unicode 13
10
+
11
+ ### 1.5.0
12
+
13
+ * Unicode 12.1
14
+
15
+ ### 1.4.0
16
+
17
+ * Unicode 12
18
+
3
19
  ### 1.3.0
4
20
 
5
21
  * Unicode 11
data/Gemfile CHANGED
@@ -4,3 +4,4 @@ gemspec
4
4
 
5
5
  gem 'minitest'
6
6
  gem 'rake'
7
+ gem 'irb' unless RUBY_ENGINE == "jruby"
data/Gemfile.lock CHANGED
@@ -1,11 +1,12 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- unicode-types (1.2.0)
4
+ unicode-types (1.6.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
+ irb (1.0.0)
9
10
  minitest (5.10.2)
10
11
  rake (12.0.0)
11
12
 
@@ -13,9 +14,10 @@ PLATFORMS
13
14
  ruby
14
15
 
15
16
  DEPENDENCIES
17
+ irb
16
18
  minitest
17
19
  rake
18
20
  unicode-types!
19
21
 
20
22
  BUNDLED WITH
21
- 1.14.6
23
+ 2.2.13
data/MIT-LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2016-2018 Jan Lelis, mail@janlelis.de
1
+ Copyright (c) 2016-2021 Jan Lelis, https://janlelis.com
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
@@ -1,4 +1,4 @@
1
- # Unicode::Types [![[version]](https://badge.fury.io/rb/unicode-types.svg)](http://badge.fury.io/rb/unicode-types) [![[travis]](https://travis-ci.org/janlelis/unicode-types.svg)](https://travis-ci.org/janlelis/unicode-types)
1
+ # Unicode::Types [![[version]](https://badge.fury.io/rb/unicode-types.svg)](https://badge.fury.io/rb/unicode-types) [![[ci]](https://github.com/janlelis/unicode-types/workflows/Test/badge.svg)](https://github.com/janlelis/unicode-types/actions?query=workflow%3ATest)
2
2
 
3
3
  Determine the basic type of codepoints. This can be one of:
4
4
 
@@ -10,11 +10,11 @@ Determine the basic type of codepoints. This can be one of:
10
10
  - Noncharacter
11
11
  - Reserved
12
12
 
13
- Unicode version: **11.0.0**
13
+ Unicode version: **14.0.0** (September 2021)
14
14
 
15
- Supported Rubies: **2.5**, **2.4**, **2.3**
15
+ Supported Rubies: **3.0**, **2.7**
16
16
 
17
- Old Rubies that might still work: **2.2**, **2.1**, **2.0**
17
+ Old Rubies that might still work: **2.6**, **2.5**, **2.4**, **2.3**, **2.2**, **2.1**, **2.0**
18
18
 
19
19
  ## Gemfile
20
20
 
@@ -43,6 +43,5 @@ See [unicode-x](https://github.com/janlelis/unicode-x) for more Unicode related
43
43
 
44
44
  ## MIT License
45
45
 
46
- - Copyright (C) 2016-2018 Jan Lelis <http://janlelis.com>. Released under the MIT license.
46
+ - Copyright (C) 2016-2021 Jan Lelis <https://janlelis.com>. Released under the MIT license.
47
47
  - Unicode data: http://www.unicode.org/copyright.html#Exhibit1
48
-
data/Rakefile CHANGED
@@ -32,6 +32,10 @@ end
32
32
 
33
33
  desc "#{gemspec.name} | Spec"
34
34
  task :spec do
35
- sh "for file in spec/*.rb; do ruby $file; done"
35
+ if RbConfig::CONFIG['host_os'] =~ /mswin|mingw/
36
+ sh "for %f in (spec/\*.rb) do ruby spec/%f"
37
+ else
38
+ sh "for file in spec/*.rb; do ruby $file; done"
39
+ end
36
40
  end
37
41
  task default: :spec
Binary file
@@ -1,9 +1,10 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Unicode
2
4
  module Types
3
- VERSION = "1.3.0".freeze
4
- UNICODE_VERSION = "11.0.0".freeze
5
- DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + '/../../../data/').freeze
6
- INDEX_FILENAME = (DATA_DIRECTORY + '/types.marshal.gz').freeze
5
+ VERSION = "1.7.0"
6
+ UNICODE_VERSION = "14.0.0"
7
+ DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + "/../../../data/").freeze
8
+ INDEX_FILENAME = (DATA_DIRECTORY + "/types.marshal.gz").freeze
7
9
  end
8
10
  end
9
-
@@ -5,10 +5,10 @@ require File.dirname(__FILE__) + "/lib/unicode/types/constants"
5
5
  Gem::Specification.new do |gem|
6
6
  gem.name = "unicode-types"
7
7
  gem.version = Unicode::Types::VERSION
8
- gem.summary = "Determine the basic type of codepoints."
9
- gem.description = "[Unicode #{Unicode::Types::UNICODE_VERSION}] Determine the basic type of codepoints (Graphic, Format, Control, Private-use, Surrogate, Noncharacter, Reserved)"
8
+ gem.summary = "Determines the very basic type of a code point"
9
+ gem.description = "[Unicode #{Unicode::Types::UNICODE_VERSION}] Determines the very basic type of codepoints (one of: Graphic, Format, Control, Private-use, Surrogate, Noncharacter, Reserved)"
10
10
  gem.authors = ["Jan Lelis"]
11
- gem.email = ["mail@janlelis.de"]
11
+ gem.email = ["hi@ruby.consulting"]
12
12
  gem.homepage = "https://github.com/janlelis/unicode-types"
13
13
  gem.license = "MIT"
14
14
 
@@ -17,5 +17,5 @@ Gem::Specification.new do |gem|
17
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
18
  gem.require_paths = ["lib"]
19
19
 
20
- gem.required_ruby_version = "~> 2.0"
20
+ gem.required_ruby_version = ">= 2.0"
21
21
  end
metadata CHANGED
@@ -1,25 +1,24 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicode-types
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.7.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: 2018-06-05 00:00:00.000000000 Z
11
+ date: 2021-09-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: "[Unicode 11.0.0] Determine the basic type of codepoints (Graphic, Format,
14
- Control, Private-use, Surrogate, Noncharacter, Reserved)"
13
+ description: "[Unicode 14.0.0] Determines the very basic type of codepoints (one of:
14
+ Graphic, Format, Control, Private-use, Surrogate, Noncharacter, Reserved)"
15
15
  email:
16
- - mail@janlelis.de
16
+ - hi@ruby.consulting
17
17
  executables: []
18
18
  extensions: []
19
19
  extra_rdoc_files: []
20
20
  files:
21
21
  - ".gitignore"
22
- - ".travis.yml"
23
22
  - CHANGELOG.md
24
23
  - CODE_OF_CONDUCT.md
25
24
  - Gemfile
@@ -44,7 +43,7 @@ require_paths:
44
43
  - lib
45
44
  required_ruby_version: !ruby/object:Gem::Requirement
46
45
  requirements:
47
- - - "~>"
46
+ - - ">="
48
47
  - !ruby/object:Gem::Version
49
48
  version: '2.0'
50
49
  required_rubygems_version: !ruby/object:Gem::Requirement
@@ -53,10 +52,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
53
52
  - !ruby/object:Gem::Version
54
53
  version: '0'
55
54
  requirements: []
56
- rubyforge_project:
57
- rubygems_version: 2.7.6
55
+ rubygems_version: 3.2.3
58
56
  signing_key:
59
57
  specification_version: 4
60
- summary: Determine the basic type of codepoints.
58
+ summary: Determines the very basic type of a code point
61
59
  test_files:
62
60
  - spec/unicode_types_spec.rb
data/.travis.yml DELETED
@@ -1,25 +0,0 @@
1
- sudo: false
2
- language: ruby
3
-
4
- script: bundle exec ruby spec/unicode_types_spec.rb
5
-
6
- rvm:
7
- - ruby-head
8
- - 2.5.1
9
- - 2.4.4
10
- - 2.3.7
11
- - 2.2
12
- - 2.1
13
- - 2.0
14
- - jruby-head
15
- - jruby-9.1.16.0
16
-
17
- matrix:
18
- allow_failures:
19
- - rvm: jruby-head
20
- - rvm: ruby-head
21
- - rvm: 2.2
22
- - rvm: 2.1
23
- - rvm: 2.0
24
- # fast_finish: true
25
-