pngcheck 0.2.1-x86_64-darwin → 0.2.4-x86_64-darwin

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: 27062afad7417e03ea6d53e0aa9368d8008999a18c59d080fc0758c0ba95e616
4
- data.tar.gz: 4781232e73a38165f618afa1f65dc9ed767eda8b7f2a830b32d1d40d41218f6f
3
+ metadata.gz: fa6c199fa73ba33534c330bf9bd193e1a843e383db879c8d7ed391456129a55a
4
+ data.tar.gz: 50affe163398919ca433e862abae5df6fc38bcdee5577c84afc4fdaf2e53fdbb
5
5
  SHA512:
6
- metadata.gz: 5e33c4ac19ad4654f701d4ea96844c1c7b77a9faf7aa40c20e79e37a001492a9300104470c1b4006d7d8aca417e1ec4d5e63fb21c3e128460a459e3c97de7fe3
7
- data.tar.gz: 57635821f813e367e4c112e43bdafbb2767742922f92b28befca78bcec2eb87238fac74b9e8f8b5cb2a784f391a62347b4dc6f67c1e1ec83247c90de68f460f5
6
+ metadata.gz: 1eb08fbf3ffc4b98ace318df638e79c0072c665dae866b56d59e2f009ba7d28e393de3f7a90fce7813bdc50fe9ebb47e72d4d78aa71eaf6d7f82186142dd3bb9
7
+ data.tar.gz: bd9b60d1619dac9087cb3b7c259701ece75be66b92dd16659b3ec10977c06cb03045ab6de28854237cf0c53a750184847582da3a2cfd651548eecc3ac214fef1
data/.cross_rubies CHANGED
@@ -1,5 +1,6 @@
1
1
  x64-mingw32
2
2
  x86_64-linux
3
+ x86_64-linux-musl
3
4
  aarch64-linux
4
5
  x86_64-darwin
5
6
  arm64-darwin
data/ext/extconf.rb CHANGED
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  $LOAD_PATH << File.expand_path(File.join(File.dirname(__FILE__), "../lib"))
4
-
5
4
  require "pngcheck/recipe"
6
5
 
7
6
  recipe = PngCheck::Recipe.new
@@ -113,8 +113,6 @@ module PngCheck
113
113
  "x64-mingw32"
114
114
  when /\Ax86_64-w64-mingw-ucrt/
115
115
  "x64-mingw-ucrt"
116
- when /\Ax86_64.*linux/
117
- "x86_64-linux"
118
116
  when /\A(arm64|aarch64).*linux/
119
117
  "aarch64-linux"
120
118
  when /\Ax86_64.*(darwin|macos|osx)/
@@ -149,7 +147,7 @@ module PngCheck
149
147
  "Mach-O 64-bit dynamically linked shared library x86_64"
150
148
  when "aarch64-linux"
151
149
  "ELF 64-bit LSB shared object, ARM aarch64"
152
- when "x86_64-linux"
150
+ when /\Ax86_64.*linux.*/
153
151
  "ELF 64-bit LSB shared object, x86-64"
154
152
  when /\Ax64-mingw(32|-ucrt)/
155
153
  "PE32+ executable (DLL) (console) x86-64, for MS Windows"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PngCheck
4
- VERSION = "0.2.1"
4
+ VERSION = "0.2.4"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pngcheck
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.4
5
5
  platform: x86_64-darwin
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-09-07 00:00:00.000000000 Z
11
+ date: 2022-09-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ffi