unicode-types 1.5.0 → 1.6.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: eef962f31ae21cf6f126eb2251b88372ae63cbac0d2bc38fa96c553b8ce93ee9
4
- data.tar.gz: '084afc9093f727032ae987ce146f64f4bf2cfdfdf810c5c0139d7ea73fc5a2b2'
3
+ metadata.gz: aff4c48b1125a99950ef4d2cf6c8ab48df5acae67e0746288ec6d132523b16c0
4
+ data.tar.gz: c989b131058cd8ee989f01cebc4162b6e3a727f13952c8ec08b1ba40fc1e70ed
5
5
  SHA512:
6
- metadata.gz: f13836be5e4e824db20cbcd5a96635eddab8577c0e3c5ab71a8b61f62e2369645cc72300acf521a3294d49ebe316f6020de49d004b58cbd995400ffaf979da4b
7
- data.tar.gz: ac6313ce3bcdb036c08b1acea42c9f3a42d409e177f5cfd748d310e4aeffc830f4f9f7c92f91efc347619c0b194ca32624c64412ad97ab380920c9f6605806e1
6
+ metadata.gz: 15f3666d6fb7bab7c1a1fef7afe43d2f922efcaed8e9f7d4bd3cb4a64b7cd15ce8f978fb7062b74d93859cc2ce02d9e1f56e6e89809f2f276a0ccd7b1c748e46
7
+ data.tar.gz: 80f07f806f5a577e5681421fb247d4c3054c6d71aa569ea728e0bb43fcde964f609ff50b681769f9142100fbb86ea4a06ec433041dbe838a1e6bb1cb32cae1df
@@ -1,27 +1,20 @@
1
1
  sudo: false
2
2
  language: ruby
3
3
 
4
- script: bundle exec ruby spec/unicode_types_spec.rb
5
-
6
4
  rvm:
5
+ - 2.7
7
6
  - 2.6
8
7
  - 2.5
9
8
  - 2.4
10
9
  - 2.3
11
- - 2.2
12
- - 2.1
13
- - 2.0
14
10
  - ruby-head
15
- - jruby-head
16
- - jruby-9.2.7.0
11
+ - jruby-9.2.9.0
12
+ - truffleruby
17
13
 
18
14
  matrix:
19
15
  allow_failures:
20
- - rvm: jruby-head
21
- - rvm: ruby-head
22
16
  - rvm: 2.3
23
- - rvm: 2.2
24
- - rvm: 2.1
25
- - rvm: 2.0
17
+ - rvm: ruby-head
18
+ - rvm: jruby-2.9.2.0
19
+ - rvm: truffleruby
26
20
  # fast_finish: true
27
-
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1,6.0
4
+
5
+ - Unicode 13
6
+
3
7
  ### 1.5.0
4
8
 
5
9
  * Unicode 12.1
data/Gemfile CHANGED
@@ -4,4 +4,4 @@ gemspec
4
4
 
5
5
  gem 'minitest'
6
6
  gem 'rake'
7
- gem 'irb'
7
+ gem 'irb' unless RUBY_ENGINE == "jruby"
@@ -1,4 +1,4 @@
1
- Copyright (c) 2016-2019 Jan Lelis, mail@janlelis.de
1
+ Copyright (c) 2016-2020 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
@@ -10,9 +10,9 @@ Determine the basic type of codepoints. This can be one of:
10
10
  - Noncharacter
11
11
  - Reserved
12
12
 
13
- Unicode version: **12.1.0** (May 2019)
13
+ Unicode version: **13.0.0** (March 2020)
14
14
 
15
- Supported Rubies: **2.6**, **2.5**, **2.4**
15
+ Supported Rubies: **2.7**, **2.6**, **2.5**, **2.4**
16
16
 
17
17
  Old Rubies that might still work: **2.3**, **2.2**, **2.1**, **2.0**
18
18
 
@@ -43,5 +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-2019 Jan Lelis <http://janlelis.com>. Released under the MIT license.
46
+ - Copyright (C) 2016-2020 Jan Lelis <https://janlelis.com>. Released under the MIT license.
47
47
  - Unicode data: http://www.unicode.org/copyright.html#Exhibit1
Binary file
@@ -2,8 +2,8 @@
2
2
 
3
3
  module Unicode
4
4
  module Types
5
- VERSION = "1.5.0"
6
- UNICODE_VERSION = "12.1.0"
5
+ VERSION = "1.6.0"
6
+ UNICODE_VERSION = "13.0.0"
7
7
  DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + "/../../../data/").freeze
8
8
  INDEX_FILENAME = (DATA_DIRECTORY + "/types.marshal.gz").freeze
9
9
  end
@@ -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,19 +1,19 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicode-types
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.0
4
+ version: 1.6.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: 2019-05-08 00:00:00.000000000 Z
11
+ date: 2020-03-11 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: "[Unicode 12.1.0] Determine the basic type of codepoints (Graphic, Format,
14
- Control, Private-use, Surrogate, Noncharacter, Reserved)"
13
+ description: "[Unicode 13.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: []
@@ -44,7 +44,7 @@ require_paths:
44
44
  - lib
45
45
  required_ruby_version: !ruby/object:Gem::Requirement
46
46
  requirements:
47
- - - "~>"
47
+ - - ">="
48
48
  - !ruby/object:Gem::Version
49
49
  version: '2.0'
50
50
  required_rubygems_version: !ruby/object:Gem::Requirement
@@ -53,9 +53,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
55
  requirements: []
56
- rubygems_version: 3.0.3
56
+ rubygems_version: 3.1.2
57
57
  signing_key:
58
58
  specification_version: 4
59
- summary: Determine the basic type of codepoints.
59
+ summary: Determines the very basic type of a code point
60
60
  test_files:
61
61
  - spec/unicode_types_spec.rb