unicode-name 1.4.2 → 1.5.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
  SHA1:
3
- metadata.gz: 81d9ee2223dc420cf89ba26688ca9f924403ddfd
4
- data.tar.gz: e1f5a75f5b60a2b08c2eff7f96f2a09df2f5cd44
3
+ metadata.gz: 84c0aecc26c057cf0415baaaa1f3d791013463c1
4
+ data.tar.gz: 23eb9d6a5de0658897cdd7ee0f5093b0870e51df
5
5
  SHA512:
6
- metadata.gz: 955e334de235a394cef1647b190aada72e8c0b6a7ad109ffec92b18dbf92fc1b3e341420dc0f5713df1b2f7075b9259934c2e1114c08d157cfdfe2cdf05182a4
7
- data.tar.gz: 02e8f9b36e889c9a621355710845ca71e67ef9db082abf414e5e79a523e7474997fa01ea555ca294c5f932620111fd1b227bcd84beef1fbe892fcb11c884b9f0
6
+ metadata.gz: '08cfc2c6760f1b08a4e33dd8665729a8acf90881c92231aac7e44cb9d7019055b16482b539bb2cad2531b33c7146f037bc79d25f0cc44737d7298e7d53ca82ab'
7
+ data.tar.gz: 7ba218d86f1e879e247d309e8c5135db680e3ae5f43d441b6db07f4f5841d166d39414b84f092de7860cdcf9593dc06bae28730e790066ff90c891298006ace8
@@ -4,16 +4,13 @@ language: ruby
4
4
  script: bundle exec ruby spec/unicode_name_spec.rb
5
5
 
6
6
  rvm:
7
- - 2.4.0
8
- - 2.3.3
7
+ - 2.4.1
8
+ - 2.3.4
9
9
  - 2.2
10
10
  - 2.1
11
11
  - ruby-head
12
12
  - jruby-head
13
- - jruby-9.1.7.0
14
-
15
- cache:
16
- - bundler
13
+ - jruby-9.1.12.0
17
14
 
18
15
  matrix:
19
16
  allow_failures:
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.5.0
4
+
5
+ * Unicode 10
6
+
3
7
  ### 1.4.2
4
8
 
5
9
  * Fix that Unicode::Name.correct would not fail if codepoint has aliases but no correction
data/Gemfile CHANGED
@@ -3,3 +3,4 @@ source 'https://rubygems.org'
3
3
  gemspec
4
4
 
5
5
  gem 'minitest'
6
+ gem 'rake'
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Return Unicode codepoint names, aliases, and labels.
4
4
 
5
- Unicode version: **9.0.0**
5
+ Unicode version: **10.0.0**
6
6
 
7
7
  Supported Rubies: **2.4**, **2.3**, **2.2**, **2.1**
8
8
 
Binary file
@@ -1,7 +1,7 @@
1
1
  module Unicode
2
2
  module Name
3
- VERSION = "1.4.2".freeze
4
- UNICODE_VERSION = "9.0.0".freeze
3
+ VERSION = "1.5.0".freeze
4
+ UNICODE_VERSION = "10.0.0".freeze
5
5
  DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + '/../../../data/').freeze
6
6
  INDEX_FILENAME = (DATA_DIRECTORY + '/name.marshal.gz').freeze
7
7
  end
@@ -18,5 +18,5 @@ Gem::Specification.new do |gem|
18
18
  gem.require_paths = ["lib"]
19
19
 
20
20
  gem.required_ruby_version = "~> 2.0"
21
- gem.add_dependency "unicode-types", "~> 1.1", ">= 1.1.2"
21
+ gem.add_dependency "unicode-types", "~> 1.2"
22
22
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicode-name
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.2
4
+ version: 1.5.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: 2017-03-25 00:00:00.000000000 Z
11
+ date: 2017-06-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: unicode-types
@@ -16,21 +16,15 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '1.1'
20
- - - ">="
21
- - !ruby/object:Gem::Version
22
- version: 1.1.2
19
+ version: '1.2'
23
20
  type: :runtime
24
21
  prerelease: false
25
22
  version_requirements: !ruby/object:Gem::Requirement
26
23
  requirements:
27
24
  - - "~>"
28
25
  - !ruby/object:Gem::Version
29
- version: '1.1'
30
- - - ">="
31
- - !ruby/object:Gem::Version
32
- version: 1.1.2
33
- description: "[Unicode 9.0.0] Returns name/aliases/label of a Unicode codepoint"
26
+ version: '1.2'
27
+ description: "[Unicode 10.0.0] Returns name/aliases/label of a Unicode codepoint"
34
28
  email:
35
29
  - mail@janlelis.de
36
30
  executables: []
@@ -42,12 +36,12 @@ files:
42
36
  - CHANGELOG.md
43
37
  - CODE_OF_CONDUCT.md
44
38
  - Gemfile
39
+ - Gemfile.lock
45
40
  - MIT-LICENSE.txt
46
41
  - README.md
47
42
  - Rakefile
48
43
  - data/name.marshal.gz
49
44
  - lib/unicode/name.rb
50
- - lib/unicode/name/.constants.rb.swp
51
45
  - lib/unicode/name/constants.rb
52
46
  - lib/unicode/name/index.rb
53
47
  - lib/unicode/name/string_ext.rb
@@ -73,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
67
  version: '0'
74
68
  requirements: []
75
69
  rubyforge_project:
76
- rubygems_version: 2.6.8
70
+ rubygems_version: 2.6.11
77
71
  signing_key:
78
72
  specification_version: 4
79
73
  summary: Returns name/aliases/label of a Unicode codepoint