pngcheck 0.2.1-arm64-darwin → 0.2.4-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: 4774a932c8929b7cf22cf303969206ff57955e684aad6282339b4ed592ee3f48
4
+ data.tar.gz: b95b0cc4d1b0b147d70d5aba32cad006a8798d2512adbb8c8c31b99727ef9301
5
5
  SHA512:
6
- metadata.gz: 3340e584959174e3d27c9ad30a73e479f496b4039d40c15054fe68d89f3b1195742ef32acf83979281979973d2fce1b7d79dd1c5934c0a10d12d79d453f3b25b
7
- data.tar.gz: 2930a5ac9432890d51288c307d79afadde51a1ca752b40aed019034a7297250db88f8754187fd88593add0c14784a085e54642108402ce706c4bd3d97973d270
6
+ metadata.gz: 22d5603a51471cf1cc104a31dc782745bdb6e9022c539e987ceb43203c5d80046d5989ccd980cb21ebef32fe144830e87523b6c2ef6c749f8f41a0790d924a4f
7
+ data.tar.gz: 75b0eefdc10a45ac6c9b4974019ba408de10c2909a79ccade0f03e1cd5418c8d5b414f8a10e224975fa3195407fa3ebeacbfbac4460aa2cbccd0dc2939ffbeb8
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: 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