unf_ext 0.0.8-x86-mingw32 → 0.0.8.2-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 +4 -4
- data/.github/workflows/unf_ext.yml +1 -7
- data/CHANGELOG.md +9 -1
- data/Rakefile +8 -5
- data/lib/2.4/unf_ext.so +0 -0
- data/lib/2.5/unf_ext.so +0 -0
- data/lib/2.6/unf_ext.so +0 -0
- data/lib/2.7/unf_ext.so +0 -0
- data/lib/3.0/unf_ext.so +0 -0
- data/lib/3.1/unf_ext.so +0 -0
- data/lib/unf_ext/version.rb +1 -1
- data/unf_ext.gemspec +1 -1
- metadata +11 -11
- data/lib/2.3/unf_ext.so +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8259b68bc2f4cf43b2267fe5e8d8d20c06b929e102973b985d2ec64de2567b29
|
4
|
+
data.tar.gz: 5f341af8118fc39da62615b0471d25baa931d060ca442afc06f58512eac919a1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4cbadbe118c366bc13a4b3375fc4d3c74e1fc5a9fb020a5f18a6afbe8f262614996c99c589bb132edf83df33579dfd07a2ac90ac98d5a483fdbb9a42fe41e8aa
|
7
|
+
data.tar.gz: e363d3b0dd653f2da55347598a8be297e9d03485ef60454d6a17209f55177af50024311e0ea3135666a8d1430d5fb9312fd228baa7f5962510d53beca2c3e518
|
@@ -12,12 +12,10 @@ jobs:
|
|
12
12
|
fail-fast: false
|
13
13
|
matrix:
|
14
14
|
os: [ ubuntu-20.04, macos-11.0, windows-2019 ]
|
15
|
-
ruby: [ 2.
|
15
|
+
ruby: [ 2.7, "3.0", 3.1, head ]
|
16
16
|
include:
|
17
17
|
- { os: windows-2019, ruby: mingw }
|
18
18
|
exclude:
|
19
|
-
- { os: macos-11.0, ruby: 2.2 }
|
20
|
-
- { os: macos-11.0, ruby: 2.3 }
|
21
19
|
- { os: windows-2019, ruby: head }
|
22
20
|
|
23
21
|
steps:
|
@@ -33,10 +31,6 @@ jobs:
|
|
33
31
|
- name: bundle install
|
34
32
|
shell: pwsh
|
35
33
|
run: |
|
36
|
-
# update RubyGems in Ruby 2.2, bundle install
|
37
|
-
if ('${{ matrix.ruby }}' -lt '2.3') {
|
38
|
-
gem update --system 2.7.10 --no-document
|
39
|
-
}
|
40
34
|
bundle config set --local path .bundle/vendor
|
41
35
|
bundle install --jobs 4 --retry 3
|
42
36
|
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,12 @@
|
|
1
|
-
## 0.0.8
|
1
|
+
## 0.0.8.2 (2022-05-26)
|
2
|
+
|
3
|
+
- Add x64-mingw-ucrt native gem support for RubyInstaller 3.1.
|
4
|
+
|
5
|
+
## 0.0.8.1 (2022-03-13)
|
6
|
+
|
7
|
+
- Include Windows binaries for Ruby 3.1. (FAIL)
|
8
|
+
|
9
|
+
## 0.0.8 (2021-09-14)
|
2
10
|
|
3
11
|
- No functional change in the library code.
|
4
12
|
- Include Windows binaries for Ruby 3.0.
|
data/Rakefile
CHANGED
@@ -2,10 +2,16 @@ require 'bundler/gem_tasks'
|
|
2
2
|
|
3
3
|
gemspec = Bundler::GemHelper.gemspec
|
4
4
|
|
5
|
+
native_platforms = %w[
|
6
|
+
x86-mingw32
|
7
|
+
x64-mingw32
|
8
|
+
x64-mingw-ucrt
|
9
|
+
]
|
10
|
+
|
5
11
|
require 'rake/extensiontask'
|
6
12
|
Rake::ExtensionTask.new('unf_ext', gemspec) do |ext|
|
7
13
|
ext.cross_compile = true
|
8
|
-
ext.cross_platform =
|
14
|
+
ext.cross_platform = native_platforms
|
9
15
|
ext.cross_config_options << '--with-ldflags="-static-libgcc"' << '--with-static-libstdc++'
|
10
16
|
end
|
11
17
|
|
@@ -13,10 +19,7 @@ namespace :gem do
|
|
13
19
|
task :native do
|
14
20
|
require 'rake_compiler_dock'
|
15
21
|
sh 'bundle package --all'
|
16
|
-
|
17
|
-
x64-mingw32
|
18
|
-
x86-mingw32
|
19
|
-
].each do |plat|
|
22
|
+
native_platforms.each do |plat|
|
20
23
|
RakeCompilerDock.sh "bundle --local && rake native:#{plat} gem", platform: plat
|
21
24
|
end
|
22
25
|
end
|
data/lib/2.4/unf_ext.so
CHANGED
Binary file
|
data/lib/2.5/unf_ext.so
CHANGED
Binary file
|
data/lib/2.6/unf_ext.so
CHANGED
Binary file
|
data/lib/2.7/unf_ext.so
CHANGED
Binary file
|
data/lib/3.0/unf_ext.so
CHANGED
Binary file
|
data/lib/3.1/unf_ext.so
ADDED
Binary file
|
data/lib/unf_ext/version.rb
CHANGED
data/unf_ext.gemspec
CHANGED
@@ -30,5 +30,5 @@ Gem::Specification.new do |gem|
|
|
30
30
|
gem.add_development_dependency("rdoc", ["> 2.4.2"])
|
31
31
|
gem.add_development_dependency("bundler", [">= 1.2"])
|
32
32
|
gem.add_development_dependency("rake-compiler", [">= 1.1.1"])
|
33
|
-
gem.add_development_dependency("rake-compiler-dock", [">= 1.1
|
33
|
+
gem.add_development_dependency("rake-compiler-dock", [">= 1.2.1"])
|
34
34
|
end
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: unf_ext
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.8
|
4
|
+
version: 0.0.8.2
|
5
5
|
platform: x86-mingw32
|
6
6
|
authors:
|
7
7
|
- Takeru Ohta
|
8
8
|
- Akinori MUSHA
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2022-06-25 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -87,14 +87,14 @@ dependencies:
|
|
87
87
|
requirements:
|
88
88
|
- - ">="
|
89
89
|
- !ruby/object:Gem::Version
|
90
|
-
version: 1.1
|
90
|
+
version: 1.2.1
|
91
91
|
type: :development
|
92
92
|
prerelease: false
|
93
93
|
version_requirements: !ruby/object:Gem::Requirement
|
94
94
|
requirements:
|
95
95
|
- - ">="
|
96
96
|
- !ruby/object:Gem::Version
|
97
|
-
version: 1.1
|
97
|
+
version: 1.2.1
|
98
98
|
description: Unicode Normalization Form support library for CRuby
|
99
99
|
email:
|
100
100
|
- knu@idaemons.org
|
@@ -120,12 +120,12 @@ files:
|
|
120
120
|
- ext/unf_ext/unf/trie/node.hh
|
121
121
|
- ext/unf_ext/unf/trie/searcher.hh
|
122
122
|
- ext/unf_ext/unf/util.hh
|
123
|
-
- lib/2.3/unf_ext.so
|
124
123
|
- lib/2.4/unf_ext.so
|
125
124
|
- lib/2.5/unf_ext.so
|
126
125
|
- lib/2.6/unf_ext.so
|
127
126
|
- lib/2.7/unf_ext.so
|
128
127
|
- lib/3.0/unf_ext.so
|
128
|
+
- lib/3.1/unf_ext.so
|
129
129
|
- lib/unf_ext.rb
|
130
130
|
- lib/unf_ext/version.rb
|
131
131
|
- test/helper.rb
|
@@ -136,7 +136,7 @@ homepage: https://github.com/knu/ruby-unf_ext
|
|
136
136
|
licenses:
|
137
137
|
- MIT
|
138
138
|
metadata: {}
|
139
|
-
post_install_message:
|
139
|
+
post_install_message:
|
140
140
|
rdoc_options: []
|
141
141
|
require_paths:
|
142
142
|
- lib
|
@@ -144,18 +144,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
144
144
|
requirements:
|
145
145
|
- - ">="
|
146
146
|
- !ruby/object:Gem::Version
|
147
|
-
version: '2.
|
147
|
+
version: '2.4'
|
148
148
|
- - "<"
|
149
149
|
- !ruby/object:Gem::Version
|
150
|
-
version: 3.
|
150
|
+
version: 3.2.dev
|
151
151
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
152
152
|
requirements:
|
153
153
|
- - ">="
|
154
154
|
- !ruby/object:Gem::Version
|
155
155
|
version: '0'
|
156
156
|
requirements: []
|
157
|
-
rubygems_version: 3.
|
158
|
-
signing_key:
|
157
|
+
rubygems_version: 3.3.4
|
158
|
+
signing_key:
|
159
159
|
specification_version: 4
|
160
160
|
summary: Unicode Normalization Form support library for CRuby
|
161
161
|
test_files:
|
data/lib/2.3/unf_ext.so
DELETED
Binary file
|