pngcheck 0.2.1-x64-mingw-ucrt → 0.2.4-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: 3aca8ae1bc5d5342e1f4d185fb035afe1254f9f19c96280c002ba8c421ad2a49
4
+ data.tar.gz: 720fd1c3830b17cf9f0af0341fa317d92c37f620df1097b3e9ef6a7e48ef41aa
5
5
  SHA512:
6
- metadata.gz: 610e4924003d687c23f17294f297c58a7ba74da34585d5737c7dbcf86ee383c6b8a7adbf84b41bb67c48e1326da689b0f8b576fc57b5192be022af30f75eed19
7
- data.tar.gz: 495e7e0c5457c0b183de9d093f15c41cc9434244aa7fbb2ebe9b97e1e75acdafca89f09b0c860ccc3340e2765d31fe259660daf13ddc13b356e102571f3bba75
6
+ metadata.gz: f3a6bd76ded8915d829ca3ad38c74f7e391c582de75742e87086e1d83131a53647ab5c7304bb76bae04992256af88464b507e8a5c9e2c0c5dde7393051b551a8
7
+ data.tar.gz: 7dae4a12dbb41512c7db7b0e4edd287c1ed6524a54581951fb572982b4a81ec9a8ae26f5bed9211c0a98991c770dc724a20a197595eb3537b6c6e0c1ebb9c17c
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.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: 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