pngcheck 0.2.1-x64-mingw-ucrt → 0.2.2-x64-mingw-ucrt

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: a0280146e90f01e8f70d2fbf8c2ac75dd87367b17a44f8595d953f5b9bbf2734
4
- data.tar.gz: 48b438bd3b5091a118d93051c8a119f7e0dc196f2a1175d25d7ecfd3b6f625ea
3
+ metadata.gz: 140d6f58bd590fd905a8d446083406b6b7df725e2ce781ac24337d9816ad25b2
4
+ data.tar.gz: 670966e941304efbe61ace5383a8e5b0b41f9992905a806222e9310252af01ea
5
5
  SHA512:
6
- metadata.gz: 610e4924003d687c23f17294f297c58a7ba74da34585d5737c7dbcf86ee383c6b8a7adbf84b41bb67c48e1326da689b0f8b576fc57b5192be022af30f75eed19
7
- data.tar.gz: 495e7e0c5457c0b183de9d093f15c41cc9434244aa7fbb2ebe9b97e1e75acdafca89f09b0c860ccc3340e2765d31fe259660daf13ddc13b356e102571f3bba75
6
+ metadata.gz: 9a9f79dd0cedf9678562992ff4c88900b1971d54fb2f50567a19829c3764f04103a4c6d5db4550914e4a4e06a3552b102d68d2de5ea29d1a2ad97ffd3fa0e5dd
7
+ data.tar.gz: 65cd10c57f42e965f77b774ffe033b6047e1456ff6d765c4d8a6740f1db96cf8aa44bb3a2731cc629eecd46be281658b5bb88fd28562dd673de82fad36605e9b
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
Binary file
@@ -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.2"
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.2
5
5
  platform: x64-mingw-ucrt
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