unicode-blocks 1.8.0 → 1.9.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: 366885cb5e621ba894ef51e186055dca65bf71bc7e3e7eb43a3c4340653bd05f
4
- data.tar.gz: 4846a923ee58a49bdad5064f9793b9d99c07c96ee627f8832f6ec7a2c0a18830
3
+ metadata.gz: d666ec02449b42d98b91df1ccb4372a5b00f71dadaebeca4bd7cc0d5708d7d6b
4
+ data.tar.gz: d005bd93cd8dcf70c056cf805a553471ffda5c5695f99cdf247417ddebbaae03
5
5
  SHA512:
6
- metadata.gz: 6e886a5b8a4f78fac3ee8ea1a6d9a9fe5d486670ff0390c7c1e5c49b67efd50c3f0af2b9db6a03d2a4507d4fd16f7f50ec9fbf6d2cbf76589c7a1064fc565065
7
- data.tar.gz: 8af9e020ca98c9416d346ef1d62aa455bf7c1ab3db8141df96f83684cb17da3e46fe2df7f38addf90c2e058739784c791fbe93204269a41f9c2162b6b75dc25f
6
+ metadata.gz: 86bf3347ba3c228cccdbf249e0620eb877c288f794213fee682eb145415a4ed6c5bff280b7748da1de60ddaf8f9bbd76b491140097d0e66673cd149ec99717cd
7
+ data.tar.gz: 9fad954a04a20717f7b4d5e95da494fbf821ac1865239efa31a8d8af3540c21244404d5ed9d4a98639571552dc0ee22613bc83460e58348a53cf75bdb85c9af6
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.9.0
4
+
5
+ - Unicode 15.1
6
+
3
7
  ### 1.8.0
4
8
 
5
9
  - Unicode 15.0
data/Gemfile.lock CHANGED
@@ -1,18 +1,24 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- unicode-blocks (1.8.0)
4
+ unicode-blocks (1.9.0)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
8
8
  specs:
9
- io-console (0.5.4)
10
- irb (1.2.1)
11
- reline (>= 0.0.1)
12
- minitest (5.14.0)
13
- rake (13.0.1)
14
- reline (0.1.2)
9
+ io-console (0.6.0)
10
+ irb (1.8.1)
11
+ rdoc
12
+ reline (>= 0.3.8)
13
+ minitest (5.20.0)
14
+ psych (5.1.0)
15
+ stringio
16
+ rake (13.0.6)
17
+ rdoc (6.5.0)
18
+ psych (>= 4.0.0)
19
+ reline (0.3.8)
15
20
  io-console (~> 0.5)
21
+ stringio (3.0.8)
16
22
 
17
23
  PLATFORMS
18
24
  ruby
data/MIT-LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2016-2022 Jan Lelis, https://janlelis.com
1
+ Copyright (c) 2016-2023 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
@@ -2,11 +2,11 @@
2
2
 
3
3
  Each Unicode character belongs to a [block](https://en.wikipedia.org/wiki/Unicode_block). This gem returns the all blocks associated with the given string.
4
4
 
5
- Unicode version: **15.0.0** (September 2022)
5
+ Unicode version: **15.1.0** (September 2023)
6
6
 
7
- Supported Rubies: **3.1**, **3.0**, **2.7**
7
+ Supported Rubies: **3.2**, **3.1**, **3.0**
8
8
 
9
- Old Rubies which might still work: **2.6**, **2.5**, **2.4**, **2.3**, **2.2**, **2.1**, **2.0**
9
+ Old Rubies which might still work: **2.X**
10
10
 
11
11
  ## Gemfile
12
12
 
@@ -378,6 +378,7 @@ CJK Unified Ideographs Extension C
378
378
  CJK Unified Ideographs Extension D
379
379
  CJK Unified Ideographs Extension E
380
380
  CJK Unified Ideographs Extension F
381
+ CJK Unified Ideographs Extension I
381
382
  CJK Compatibility Ideographs Supplement
382
383
  CJK Unified Ideographs Extension G
383
384
  CJK Unified Ideographs Extension H
@@ -391,5 +392,5 @@ See [unicode-x](https://github.com/janlelis/unicode-x) for more Unicode related
391
392
 
392
393
  ## MIT License
393
394
 
394
- - Copyright (C) 2016-2022 Jan Lelis <https://janlelis.com>. Released under the MIT license.
395
+ - Copyright (C) 2016-2023 Jan Lelis <https://janlelis.com>. Released under the MIT license.
395
396
  - Unicode data: https://www.unicode.org/copyright.html#Exhibit1
Binary file
@@ -2,8 +2,8 @@
2
2
 
3
3
  module Unicode
4
4
  module Blocks
5
- VERSION = "1.8.0"
6
- UNICODE_VERSION = "15.0.0"
5
+ VERSION = "1.9.0"
6
+ UNICODE_VERSION = "15.1.0"
7
7
  DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + "/../../../data/").freeze
8
8
  INDEX_FILENAME = (DATA_DIRECTORY + "/blocks.marshal.gz").freeze
9
9
  end
@@ -17,7 +17,7 @@ describe Unicode::Blocks do
17
17
  end
18
18
 
19
19
  it "will call .block for every character" do
20
- mocked_method = MiniTest::Mock.new
20
+ mocked_method = Minitest::Mock.new
21
21
  mocked_method.expect :call, "first block", ["С"]
22
22
  mocked_method.expect :call, "second block", ["A"]
23
23
  Unicode::Blocks.stub :block, mocked_method do
@@ -16,6 +16,7 @@ Gem::Specification.new do |gem|
16
16
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
17
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
18
18
  gem.require_paths = ["lib"]
19
+ gem.metadata = { "rubygems_mfa_required" => "true" }
19
20
 
20
21
  gem.required_ruby_version = ">= 2.0"
21
22
  end
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicode-blocks
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.0
4
+ version: 1.9.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: 2022-09-13 00:00:00.000000000 Z
11
+ date: 2023-10-01 00:00:00.000000000 Z
12
12
  dependencies: []
13
- description: "[Unicode 15.0.0] Answers the question: Which Unicode block does a code
13
+ description: "[Unicode 15.1.0] Answers the question: Which Unicode block does a code
14
14
  point belong to?"
15
15
  email:
16
16
  - hi@ruby.consulting
@@ -36,7 +36,8 @@ files:
36
36
  homepage: https://github.com/janlelis/unicode-blocks
37
37
  licenses:
38
38
  - MIT
39
- metadata: {}
39
+ metadata:
40
+ rubygems_mfa_required: 'true'
40
41
  post_install_message:
41
42
  rdoc_options: []
42
43
  require_paths:
@@ -52,7 +53,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
52
53
  - !ruby/object:Gem::Version
53
54
  version: '0'
54
55
  requirements: []
55
- rubygems_version: 3.3.7
56
+ rubygems_version: 3.4.4
56
57
  signing_key:
57
58
  specification_version: 4
58
59
  summary: Return Unicode blocks of a string.