unicode-types 1.6.0 → 1.7.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aff4c48b1125a99950ef4d2cf6c8ab48df5acae67e0746288ec6d132523b16c0
4
- data.tar.gz: c989b131058cd8ee989f01cebc4162b6e3a727f13952c8ec08b1ba40fc1e70ed
3
+ metadata.gz: bb2fc8daadc9f49a2fb87c32b6a03818d1990aa9054eaf22571c9f13470d2e68
4
+ data.tar.gz: 3d7eccfb31adbb6a307f3246b7344957ba032df902aec2de70db80396affdb1e
5
5
  SHA512:
6
- metadata.gz: 15f3666d6fb7bab7c1a1fef7afe43d2f922efcaed8e9f7d4bd3cb4a64b7cd15ce8f978fb7062b74d93859cc2ce02d9e1f56e6e89809f2f276a0ccd7b1c748e46
7
- data.tar.gz: 80f07f806f5a577e5681421fb247d4c3054c6d71aa569ea728e0bb43fcde964f609ff50b681769f9142100fbb86ea4a06ec433041dbe838a1e6bb1cb32cae1df
6
+ metadata.gz: 2e60a22be8a61f2e55e9ac80e65dbad51c3da6077253193c7aac832b3125f2497a4248fe67f5404878451f46c32d8d80d23f4054cf6d33eaa4ae8acbeba43dd4
7
+ data.tar.gz: 8ed348416b253ba38ec242c4f377f19006afeb0eea98ff0e46e3a0b402d4f36a9cf05442298c74c7855f232ed5259b998d0a71ee8d27ac6b0d4d5110eb920c45
data/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  ## CHANGELOG
2
2
 
3
- ### 1,6.0
3
+ ### 1.7.0
4
+
5
+ - Unicode 14
6
+
7
+ ### 1.6.0
4
8
 
5
9
  - Unicode 13
6
10
 
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- unicode-types (1.5.0)
4
+ unicode-types (1.6.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
@@ -20,4 +20,4 @@ DEPENDENCIES
20
20
  unicode-types!
21
21
 
22
22
  BUNDLED WITH
23
- 1.17.2
23
+ 2.2.13
data/MIT-LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2016-2020 Jan Lelis, https://janlelis.com
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)](https://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: **13.0.0** (March 2020)
13
+ Unicode version: **14.0.0** (September 2021)
14
14
 
15
- Supported Rubies: **2.7**, **2.6**, **2.5**, **2.4**
15
+ Supported Rubies: **3.0**, **2.7**
16
16
 
17
- Old Rubies that might still work: **2.3**, **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,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-2020 Jan Lelis <https://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
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
@@ -2,8 +2,8 @@
2
2
 
3
3
  module Unicode
4
4
  module Types
5
- VERSION = "1.6.0"
6
- UNICODE_VERSION = "13.0.0"
5
+ VERSION = "1.7.0"
6
+ UNICODE_VERSION = "14.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
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicode-types
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.6.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: 2020-03-11 00:00:00.000000000 Z
11
+ date: 2021-09-15 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: "[Unicode 13.0.0] Determines the very basic type of codepoints (one of:
13
+ description: "[Unicode 14.0.0] Determines the very basic type of codepoints (one of:
14
14
  Graphic, Format, Control, Private-use, Surrogate, Noncharacter, Reserved)"
15
15
  email:
16
16
  - hi@ruby.consulting
@@ -19,7 +19,6 @@ 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
@@ -53,7 +52,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
53
52
  - !ruby/object:Gem::Version
54
53
  version: '0'
55
54
  requirements: []
56
- rubygems_version: 3.1.2
55
+ rubygems_version: 3.2.3
57
56
  signing_key:
58
57
  specification_version: 4
59
58
  summary: Determines the very basic type of a code point
data/.travis.yml DELETED
@@ -1,20 +0,0 @@
1
- sudo: false
2
- language: ruby
3
-
4
- rvm:
5
- - 2.7
6
- - 2.6
7
- - 2.5
8
- - 2.4
9
- - 2.3
10
- - ruby-head
11
- - jruby-9.2.9.0
12
- - truffleruby
13
-
14
- matrix:
15
- allow_failures:
16
- - rvm: 2.3
17
- - rvm: ruby-head
18
- - rvm: jruby-2.9.2.0
19
- - rvm: truffleruby
20
- # fast_finish: true