extract_ttc 0.3.4-x64-mingw32 → 0.3.5-x64-mingw32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: efbc52e1c4fed4b8eadcf3a5d4da842b9a40c4c116c1b47b521f97e0a9aa446d
4
- data.tar.gz: 4519f8a447a93fd2af406aa256085395fffb05424d9914a205b2137da387b899
3
+ metadata.gz: eb918e74152e36010677440d85eb095e772ff237129d5e80a1b2f136c03f9866
4
+ data.tar.gz: bab22d808431632d6f3c6c68a3aaa77426451c4e2811c8ef158b47e28a07ee5a
5
5
  SHA512:
6
- metadata.gz: 1bbfd1b728f783b62718e5bbb178a1b4e3f3dc562791dc5f2c2adc51c7711231267c422bf25e64c7bb6e4ef28b8a5a8e2c6f9e43dfa77b60a19ffcc85ad5f7a5
7
- data.tar.gz: 24dc96a9ba9bf16551c1d02c8121485805056cc28e4846ed0ea908bcf92fdf676a09622375ccae1b92c48e64816cb6a132be7f97d60305bf6e91e9c13ece7d5a
6
+ metadata.gz: 8d15153e5dc51192e9a0bb19e7904c0237f6dce13a47ddd3f84dd11d46095c6a3f1ee3aa2a971071005e4cd44dc7d254da5932ca1bd4126ece1752f9f95e525f
7
+ data.tar.gz: f90a7d82f7c7d190fe3443fc9906389179fb472e218b16b033e1a1e9ff4fe9bdf9a5baf1ef95bdcb975a4e530c618565b012b0ba172732e5b5d9185d621310a8
data/README.adoc CHANGED
@@ -1,3 +1,8 @@
1
+ image:https://img.shields.io/gem/v/extract_ttc.svg["Gem Version", link="https://rubygems.org/gems/extract_ttc"]
2
+ image:https://github.com/fontist/extract_ttc/workflows/test-and-release/badge.svg["Build Status", link="https://github.com/fontist/extract_ttc/actions?workflow=test-and-release"]
3
+ // image:https://codeclimate.com/github/metanorma/extract_ttc/badges/gpa.svg["Code Climate", link="https://codeclimate.com/github/fontist/extract_ttc"]
4
+ image:https://img.shields.io/github/issues-pr-raw/fontist/extract_ttc.svg["Pull Requests", link="https://github.com/fontist/extract_ttc/pulls"]
5
+
1
6
  = ExtractTtc: Ruby gem to extract TTF from TTC
2
7
 
3
8
  == Purpose
data/lib/2.7/stripttc.so CHANGED
Binary file
data/lib/3.0/stripttc.so CHANGED
Binary file
@@ -1,3 +1,3 @@
1
1
  module ExtractTtc
2
- VERSION = "0.3.4".freeze
2
+ VERSION = "0.3.5".freeze
3
3
  end
data/lib/extract_ttc.rb CHANGED
@@ -16,19 +16,14 @@ 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_subdir = RUBY_VERSION.split(".").first(2).join(".")
20
+ macos_binary = "stripttc.bundle"
19
21
  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
- ),
22
+ File.join(File.dirname(__FILE__), lib_subdir, macos_binary),
30
23
  )
31
- "stripttc.bundle"
24
+ File.join(lib_subdir, macos_binary)
25
+ elsif File.exist?(File.join(File.dirname(__FILE__), macos_binary))
26
+ macos_binary
32
27
  else
33
28
  "stripttc.so"
34
29
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: extract_ttc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 0.3.5
5
5
  platform: x64-mingw32
6
6
  authors:
7
7
  - Ribose Inc.