unf_ext 0.0.8 → 0.0.8.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 +4 -4
- data/.github/workflows/unf_ext.yml +1 -7
- data/CHANGELOG.md +5 -1
- data/lib/unf_ext/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 2cfd5ee9cef287c3517cca8b14ff559ba837b0f2ccaec3de630824997d0fc001
|
|
4
|
+
data.tar.gz: 671b8febe27fe194121bf7e4939f80b699924d42cb14998603163260bc6c2c0a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d47ece9fb86a78943b55d9eeb566cfe909ed2a3814975a978adefcc09d82af04de81ac717e97732d25f718af2bd97cd9dc63746c8cc6008bb7e851f4eca87160
|
|
7
|
+
data.tar.gz: 1e2244f3fdcfafdb4cd034cd1fd4a21a52fafb97960e9ac491abd625c72ceebfbf0520b7800f567fb7882466ef96428ba9266d0a7b67209e477444a8275a725b
|
|
@@ -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.6, 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
data/lib/unf_ext/version.rb
CHANGED
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.1
|
|
5
5
|
platform: ruby
|
|
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-03-13 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rake
|
|
@@ -131,7 +131,7 @@ homepage: https://github.com/knu/ruby-unf_ext
|
|
|
131
131
|
licenses:
|
|
132
132
|
- MIT
|
|
133
133
|
metadata: {}
|
|
134
|
-
post_install_message:
|
|
134
|
+
post_install_message:
|
|
135
135
|
rdoc_options: []
|
|
136
136
|
require_paths:
|
|
137
137
|
- lib
|
|
@@ -146,8 +146,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
146
146
|
- !ruby/object:Gem::Version
|
|
147
147
|
version: '0'
|
|
148
148
|
requirements: []
|
|
149
|
-
rubygems_version: 3.
|
|
150
|
-
signing_key:
|
|
149
|
+
rubygems_version: 3.3.7
|
|
150
|
+
signing_key:
|
|
151
151
|
specification_version: 4
|
|
152
152
|
summary: Unicode Normalization Form support library for CRuby
|
|
153
153
|
test_files:
|