extract_ttc 0.3.3-x64-mingw32 → 0.3.4-x64-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/lib/2.7/stripttc.so +0 -0
- data/lib/3.0/stripttc.so +0 -0
- data/lib/extract_ttc/version.rb +1 -1
- data/lib/extract_ttc.rb +12 -2
- 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: efbc52e1c4fed4b8eadcf3a5d4da842b9a40c4c116c1b47b521f97e0a9aa446d
|
4
|
+
data.tar.gz: 4519f8a447a93fd2af406aa256085395fffb05424d9914a205b2137da387b899
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1bbfd1b728f783b62718e5bbb178a1b4e3f3dc562791dc5f2c2adc51c7711231267c422bf25e64c7bb6e4ef28b8a5a8e2c6f9e43dfa77b60a19ffcc85ad5f7a5
|
7
|
+
data.tar.gz: 24dc96a9ba9bf16551c1d02c8121485805056cc28e4846ed0ea908bcf92fdf676a09622375ccae1b92c48e64816cb6a132be7f97d60305bf6e91e9c13ece7d5a
|
data/lib/2.7/stripttc.so
CHANGED
Binary file
|
data/lib/3.0/stripttc.so
CHANGED
Binary file
|
data/lib/extract_ttc/version.rb
CHANGED
data/lib/extract_ttc.rb
CHANGED
@@ -16,8 +16,18 @@ module ExtractTtc
|
|
16
16
|
extend FFI::Library
|
17
17
|
# NOTE: ffi doesn't support bundles out of box https://github.com/ffi/ffi/issues/42#issuecomment-750031554
|
18
18
|
# NOTE: rake-compiler doesn't support dylib generation https://github.com/rake-compiler/rake-compiler/issues/183
|
19
|
-
lib_name = if File.
|
20
|
-
|
19
|
+
lib_name = if File.exist?(
|
20
|
+
File.join(
|
21
|
+
File.dirname(__FILE__),
|
22
|
+
RUBY_VERSION.split(".").first(2).join("."),
|
23
|
+
"stripttc.bundle",
|
24
|
+
),
|
25
|
+
) || File.exist?(
|
26
|
+
File.join(
|
27
|
+
File.dirname(__FILE__),
|
28
|
+
"stripttc.bundle",
|
29
|
+
),
|
30
|
+
)
|
21
31
|
"stripttc.bundle"
|
22
32
|
else
|
23
33
|
"stripttc.so"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: extract_ttc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.4
|
5
5
|
platform: x64-mingw32
|
6
6
|
authors:
|
7
7
|
- Ribose Inc.
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-02-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -169,7 +169,7 @@ metadata:
|
|
169
169
|
source_code_uri: https://github.com/fontist/extract_ttc
|
170
170
|
changelog_uri: https://github.com/fontist/extract_ttc
|
171
171
|
rubygems_mfa_required: 'false'
|
172
|
-
post_install_message:
|
172
|
+
post_install_message:
|
173
173
|
rdoc_options: []
|
174
174
|
require_paths:
|
175
175
|
- lib
|
@@ -184,8 +184,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
184
184
|
- !ruby/object:Gem::Version
|
185
185
|
version: '0'
|
186
186
|
requirements: []
|
187
|
-
rubygems_version: 3.3.
|
188
|
-
signing_key:
|
187
|
+
rubygems_version: 3.3.26
|
188
|
+
signing_key:
|
189
189
|
specification_version: 4
|
190
190
|
summary: Extract TTC file to TTF files
|
191
191
|
test_files: []
|