unicode 0.4.4.2-x86-mingw32 → 0.4.4.3-x86-mingw32

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: 3568264f58e2a241b0de971431ccda8bdb86bfe2
4
- data.tar.gz: b539410c1911711baa11d885d7530f44e9ba87cc
3
+ metadata.gz: a6cc6425a982b8d30c7a54ad59129dd1fc9e68cb
4
+ data.tar.gz: e8b8ed2dca057dcaee487f04923ba2e6f85cc274
5
5
  SHA512:
6
- metadata.gz: 9aee3aaa24c209f15421dad1fc5a5ad0824a691623dc599dcfe3f4db8f6e4a7647aa73d6201a6a1c6bfeb0ea0d4c8dc76c6c171f0d79af83218f786676efa74f
7
- data.tar.gz: a97f4e5cc47766aaf700d20063801bf4b854d097aa432ba1239aca70f94e2d707087f294fee92c145de17bb72eddac1cf73d2cb6559a61a0ab674728c2e9e0f9
6
+ metadata.gz: 45333294c623713453f872eb33fa85cfc2171c4fbaa8a02822d3f6f30312c8c3477b8ec42a2f0d348b3cf9460e27870252b200cb0f9e49d145d8e60c5e778ece
7
+ data.tar.gz: ff8544c3720d769df83cb8d0a65a436d0580db3387ac21cadd2f4ce2c60868af3e68ecec0bd514de77404a44fda6ddf0b90a7b5da1fbc8ed63440ab0ab6cc85b
data/Rakefile CHANGED
@@ -54,7 +54,7 @@ namespace :gem do
54
54
 
55
55
  desc 'Build native gems for Windows'
56
56
  task :windows do
57
- ENV['RUBY_CC_VERSION'] = '1.9.3:2.0.0:2.1.5'
57
+ ENV['RUBY_CC_VERSION'] = '1.9.3:2.0.0:2.1.5:2.2.0'
58
58
  sh 'rake cross compile'
59
59
  sh 'rake cross native gem'
60
60
  end
data/lib/unicode.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  begin
2
- RUBY_VERSION =~ /(\d+.\d+)/
3
- require "unicode/#{$1}/unicode_native"
4
- rescue LoadError
2
+ require "unicode/#{RUBY_VERSION[/\d+.\d+/]}/unicode_native"
3
+ rescue LoadError => err
4
+ raise if err.respond_to?(:path) && !err.path
5
5
  require 'unicode/unicode_native'
6
6
  end
Binary file
Binary file
Binary file
Binary file
data/unicode.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{unicode}
5
- s.version = "0.4.4.2"
5
+ s.version = "0.4.4.3"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = [%q{Yoshida Masato}]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unicode
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.4.2
4
+ version: 0.4.4.3
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Yoshida Masato
@@ -30,6 +30,7 @@ files:
30
30
  - lib/unicode/1.9/unicode_native.so
31
31
  - lib/unicode/2.0/unicode_native.so
32
32
  - lib/unicode/2.1/unicode_native.so
33
+ - lib/unicode/2.2/unicode_native.so
33
34
  - test/test.rb
34
35
  - tools/README
35
36
  - tools/mkunidata.rb
@@ -55,7 +56,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
55
56
  version: '0'
56
57
  requirements: []
57
58
  rubyforge_project:
58
- rubygems_version: 2.4.4
59
+ rubygems_version: 2.4.5
59
60
  signing_key:
60
61
  specification_version: 3
61
62
  summary: Unicode normalization library.