unicode-types 1.0.0 → 1.0.1

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: 9b93d80fe62f3f1218284bf85048338b0d684c4c
4
- data.tar.gz: 5eba94569c06428ceddf928034f85662fb0b1e13
3
+ metadata.gz: 185558d7fce84276c12ccd898d048b48b890b15b
4
+ data.tar.gz: c114d068999309be5fbb8e30b859bb39eae908c8
5
5
  SHA512:
6
- metadata.gz: 56e416f18e96a487038868b11dc39b5f18674d503a5b71af3a411d54a8e25aa652841465125d2d0519d3225dfdb79bb872abe4f789d47b70a6bd082dc75aae34
7
- data.tar.gz: bfd61c8ca952d317d6a895bceffe1d4181e543e9f48e8add9eb0f6ca3035b9337115f3d81bbb07bd560f3aa8876d30de0f288beb5239a03259c5791b8d119b45
6
+ metadata.gz: 1a0c36f3fa88986f5951920f88c974baa29eb733659f53395c255fd493fb298c855d54c909b240d2e8794049861442e8f55c7647c809227247802512184bae06
7
+ data.tar.gz: 50f6788a920e7ebf8b6445d7e07c01dc85705103a0e1113b1826f8e324b4b0da6ccae9ca82bf13631db12367c09351689d769c0892e04af647aa1089a67734db
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## CHANGELOG
2
2
 
3
+ ### 1.0.1
4
+
5
+ * Fix index that would confuse reserved and noncharacters
6
+
3
7
  ### 1.0.0
4
8
 
5
9
  * Inital release
Binary file
@@ -1,6 +1,6 @@
1
1
  module Unicode
2
2
  module Types
3
- VERSION = "1.0.0".freeze
3
+ VERSION = "1.0.1".freeze
4
4
  UNICODE_VERSION = "8.0.0".freeze
5
5
  DATA_DIRECTORY = File.expand_path(File.dirname(__FILE__) + '/../../../data/').freeze
6
6
  INDEX_FILENAME = (DATA_DIRECTORY + '/types.marshal.gz').freeze
Binary file
@@ -38,6 +38,7 @@ describe Unicode::Types do
38
38
 
39
39
  it "will return Reserved for unassigned codepoints" do
40
40
  assert_equal "Reserved", Unicode::Types.type("\u{10c50}")
41
+ assert_equal "Reserved", Unicode::Types.type("\u{c03a6}")
41
42
  end
42
43
  end
43
44
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicode-types
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Lelis
@@ -31,6 +31,7 @@ files:
31
31
  - lib/unicode/types/constants.rb
32
32
  - lib/unicode/types/index.rb
33
33
  - lib/unicode/types/string_ext.rb
34
+ - spec/.unicode_types_spec.rb.swp
34
35
  - spec/unicode_types_spec.rb
35
36
  - unicode-types.gemspec
36
37
  homepage: https://github.com/janlelis/unicode-types
@@ -58,5 +59,6 @@ signing_key:
58
59
  specification_version: 4
59
60
  summary: Determine the basic type of codepoints.
60
61
  test_files:
62
+ - spec/.unicode_types_spec.rb.swp
61
63
  - spec/unicode_types_spec.rb
62
64
  has_rdoc: