pngcheck 0.2.1-arm64-darwin → 0.2.2-arm64-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: 77aabcdf0b0cc1417e27bb5a88b76b366781caa36dfc31b4179ac99eb0587281
4
- data.tar.gz: 7cb7e956b393c949bafb3f6aaa50ed309e7f9267f427877da80095d450095de3
3
+ metadata.gz: dfc26ff286f4a09cb4371c13e8014699033301f6adf5d29f9fc5af395a5419df
4
+ data.tar.gz: 2a2cade83598e36b326cff04f80c13f94f3e86ca15bd3d2ad204acb0aaa7b4ff
5
5
  SHA512:
6
- metadata.gz: 3340e584959174e3d27c9ad30a73e479f496b4039d40c15054fe68d89f3b1195742ef32acf83979281979973d2fce1b7d79dd1c5934c0a10d12d79d453f3b25b
7
- data.tar.gz: 2930a5ac9432890d51288c307d79afadde51a1ca752b40aed019034a7297250db88f8754187fd88593add0c14784a085e54642108402ce706c4bd3d97973d270
6
+ metadata.gz: ddf1b1b9dfd480be23cb1ef6d6e44b2f528b52efca26fdc21c6c10ee74db96f8e34bc7e659fe1cb9700fb143229f1c7cb7914a88a55760db9ed858e34faeee22
7
+ data.tar.gz: 6233beee43c0ae2645e3278bf8e40be4b4db024d0320f51cec91ca9618d98b17688204e05c8739d0f305ba0397916a8ce822deff187cb344382cafeb8b7fa1ad
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.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: arm64-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