characteristics 1.2.0 → 1.3.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: 561f5469ee65add83634e17a349c04640d27a38bebb845997c07bd636eac127b
4
- data.tar.gz: 94773cb028ab6e488d2fa3bab19499fa963b3f180bb300374c0c45e98f7f22aa
3
+ metadata.gz: 52d5c09bac185e905a98a3b1e7c78aaa76b44e4235d34a7990f8cf057c93a25e
4
+ data.tar.gz: f5a778f2276c1467fbe6be8e04bd6675a156f9df9c4719557bc3918b39aaf8b8
5
5
  SHA512:
6
- metadata.gz: 9650b52b86ba29bbbff4239b0beb22dcb25e67ad4a6e5c33c1d5e0358568d036584a32de2ae0de52120c3cddc945961148cdfd5621f4e6f9a968843e48fc9add
7
- data.tar.gz: d0a6a21c59d51c2fd5de533cc75fce270f3d0767b647024c90b499901a0d1e214d5d04f57c53753acc724eeffd5274859a2410e3f3c1126f680fe1ad121d6eed
6
+ metadata.gz: ad26ac1547647198a679ad53fb36b83d680053d38986968980ca8e794d31cc00334f29e07d555cfee382fb6902d022a3cc69fdd5b849b9d4dddc0a4798d89d9e
7
+ data.tar.gz: 298b7e4cd6c2233de6f392254d737a070299b56dc5884750fe34255a1d4f141b0348ebd2bc180560cb6ed83dfb0f2719c3ad55eff0bdf84ef808d0f95813c327
@@ -1,5 +1,10 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.3.0
4
+
5
+ * Unicode 13 (general categories)
6
+ * Relax Ruby version requirement to allow Ruby 3.0
7
+
3
8
  ### 1.2.0
4
9
 
5
10
  * Unicode 12 (general categories)
@@ -1,4 +1,4 @@
1
- Copyright (c) 2017-2019 Jan Lelis, mail@janlelis.de
1
+ Copyright (c) 2017-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
@@ -1,4 +1,4 @@
1
- # Characteristics [![[version]](https://badge.fury.io/rb/characteristics.svg)](https://badge.fury.io/rb/characteristics) [![[travis]](https://travis-ci.org/janlelis/characteristics.svg)](https://travis-ci.org/janlelis/characteristics)
1
+ # Characteristics [![[version]](https://badge.fury.io/rb/characteristics.svg)](https://badge.fury.io/rb/characteristics) [![[ci]](https://github.com/janlelis/characteristics/workflows/Test/badge.svg)](https://github.com/janlelis/characteristics/actions?query=workflow%3ATest)
2
2
 
3
3
  A Ruby library that provides additional info about characters:¹
4
4
 
@@ -118,4 +118,4 @@ This flag is *true* only for special formatting characters, which are not contro
118
118
 
119
119
  ## MIT License
120
120
 
121
- Copyright (C) 2017-2019 Jan Lelis <http://janlelis.com>. Released under the MIT license.
121
+ Copyright (C) 2017-2020 Jan Lelis <https://janlelis.com>. Released under the MIT license.
data/Rakefile CHANGED
@@ -32,7 +32,11 @@ end
32
32
 
33
33
  desc "#{gemspec.name} | Spec"
34
34
  task :spec do
35
- sh "for file in spec/*_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
38
42
 
@@ -5,10 +5,10 @@ require File.dirname(__FILE__) + "/lib/characteristics/version"
5
5
  Gem::Specification.new do |gem|
6
6
  gem.name = "characteristics"
7
7
  gem.version = Characteristics::VERSION
8
- gem.summary = "Basic character properties."
9
- gem.description = "A Ruby library which provides some basic information about how characters behave in different encodings."
8
+ gem.summary = "Basic character properties"
9
+ gem.description = "Provides basic information about how characters behave in different encodings"
10
10
  gem.authors = ["Jan Lelis"]
11
- gem.email = ["mail@janlelis.de"]
11
+ gem.email = ["hi@ruby.consulting.com"]
12
12
  gem.homepage = "https://github.com/janlelis/characteristics"
13
13
  gem.license = "MIT"
14
14
 
@@ -17,6 +17,6 @@ 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"
21
- gem.add_dependency 'unicode-categories', '~> 1.4'
20
+ gem.required_ruby_version = ">= 2.0"
21
+ gem.add_dependency 'unicode-categories', '~> 1.6'
22
22
  end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class Characteristics
4
- VERSION = "1.2.0"
5
- UNICODE_VERSION = "12.0.0"
4
+ VERSION = "1.3.0"
5
+ UNICODE_VERSION = "13.0.0"
6
6
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: characteristics
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.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-03-05 00:00:00.000000000 Z
11
+ date: 2020-12-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: unicode-categories
@@ -16,24 +16,22 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.4'
19
+ version: '1.6'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '1.4'
27
- description: A Ruby library which provides some basic information about how characters
28
- behave in different encodings.
26
+ version: '1.6'
27
+ description: Provides basic information about how characters behave in different encodings
29
28
  email:
30
- - mail@janlelis.de
29
+ - hi@ruby.consulting.com
31
30
  executables: []
32
31
  extensions: []
33
32
  extra_rdoc_files: []
34
33
  files:
35
34
  - ".gitignore"
36
- - ".travis.yml"
37
35
  - CHANGELOG.md
38
36
  - CODE_OF_CONDUCT.md
39
37
  - Gemfile
@@ -59,7 +57,7 @@ require_paths:
59
57
  - lib
60
58
  required_ruby_version: !ruby/object:Gem::Requirement
61
59
  requirements:
62
- - - "~>"
60
+ - - ">="
63
61
  - !ruby/object:Gem::Version
64
62
  version: '2.0'
65
63
  required_rubygems_version: !ruby/object:Gem::Requirement
@@ -68,9 +66,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
68
66
  - !ruby/object:Gem::Version
69
67
  version: '0'
70
68
  requirements: []
71
- rubygems_version: 3.0.1
69
+ rubygems_version: 3.2.3
72
70
  signing_key:
73
71
  specification_version: 4
74
- summary: Basic character properties.
72
+ summary: Basic character properties
75
73
  test_files:
76
74
  - spec/characteristics_spec.rb
@@ -1,24 +0,0 @@
1
- sudo: false
2
- language: ruby
3
-
4
- rvm:
5
- - ruby-head
6
- - 2.6.1
7
- - 2.5.3
8
- - 2.4.5
9
- - 2.3.8
10
- - 2.2
11
- - 2.1
12
- - 2.0
13
- - jruby-head
14
- - jruby-9.2.6.0
15
-
16
- matrix:
17
- allow_failures:
18
- - rvm: jruby-head
19
- - rvm: ruby-head
20
- - rvm: 2.3.8
21
- - rvm: 2.2
22
- - rvm: 2.1
23
- - rvm: 2.0
24
- # fast_finish: true