image_optim_pack 0.12.2 → 0.12.2.20251130
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/build.yml +6 -6
- data/.github/workflows/check.yml +1 -1
- data/.github/workflows/docker-build.yml +1 -1
- data/.github/workflows/livecheck.yml +1 -1
- data/.github/workflows/rubocop.yml +1 -1
- data/CHANGELOG.markdown +4 -0
- data/Makefile +1 -1
- data/checksums.mk +1 -1
- data/image_optim_pack.gemspec +1 -1
- data/vendor/darwin-arm64/libpng.dylib +0 -0
- data/vendor/darwin-arm64/optipng +0 -0
- data/vendor/darwin-arm64/pngcrush +0 -0
- data/vendor/darwin-arm64/pngquant +0 -0
- data/vendor/darwin-x86_64/libpng.dylib +0 -0
- data/vendor/darwin-x86_64/optipng +0 -0
- data/vendor/darwin-x86_64/pngcrush +0 -0
- data/vendor/darwin-x86_64/pngquant +0 -0
- data/vendor/linux-x86_64/libpng.so +0 -0
- data/vendor/linux-x86_64/optipng +0 -0
- data/vendor/linux-x86_64/pngcrush +0 -0
- data/vendor/linux-x86_64/pngquant +0 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7f91ac79b37b4169fa3614541ebcb91535a3c73182f503a2648b9dd4782d28e1
|
|
4
|
+
data.tar.gz: d3839dc691f57c0e6d13ef0ca74c83c4c77b92db71f9d94c218bc44ac0ef21e5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9499a907e7708dda1a432bb51ed0f4d9d074d9a7ea4d86ce06998e907d198a159e365307657bae0cfc9490fc28529f1807003743ed993ad0ab408f2a75c8c08a
|
|
7
|
+
data.tar.gz: afcef38e768b9a476ad896092a1760130f185cda20c4240839ca107e0ab7dbbf2a3ccad7b424099150eaa818cc40af20461d5d3c5cf563cca6e9c3e6a6aade72
|
data/.github/workflows/build.yml
CHANGED
|
@@ -6,42 +6,42 @@ jobs:
|
|
|
6
6
|
build-on-linux:
|
|
7
7
|
runs-on: ubuntu-latest
|
|
8
8
|
steps:
|
|
9
|
-
- uses: actions/checkout@
|
|
9
|
+
- uses: actions/checkout@v6
|
|
10
10
|
- run: uname -m
|
|
11
11
|
- run: sudo apt-get install -y chrpath
|
|
12
12
|
- run: rustup target list --installed
|
|
13
13
|
- run: make download download-dependencies
|
|
14
14
|
- run: rm -r vendor
|
|
15
15
|
- run: make all
|
|
16
|
-
- uses: actions/upload-artifact@
|
|
16
|
+
- uses: actions/upload-artifact@v5
|
|
17
17
|
with:
|
|
18
18
|
name: on-linux
|
|
19
19
|
path: vendor/
|
|
20
20
|
build-on-darwin-x86_64:
|
|
21
21
|
runs-on: macos-15-intel
|
|
22
22
|
steps:
|
|
23
|
-
- uses: actions/checkout@
|
|
23
|
+
- uses: actions/checkout@v6
|
|
24
24
|
- run: uname -m
|
|
25
25
|
- run: rustup target add aarch64-apple-darwin
|
|
26
26
|
- run: make download download-dependencies
|
|
27
27
|
- run: rm -r vendor
|
|
28
28
|
- run: make all ARCH=x86_64
|
|
29
29
|
- run: make all ARCH=arm64
|
|
30
|
-
- uses: actions/upload-artifact@
|
|
30
|
+
- uses: actions/upload-artifact@v5
|
|
31
31
|
with:
|
|
32
32
|
name: on-darwin-x86_64
|
|
33
33
|
path: vendor/
|
|
34
34
|
build-on-darwin-arm64:
|
|
35
35
|
runs-on: macos-14
|
|
36
36
|
steps:
|
|
37
|
-
- uses: actions/checkout@
|
|
37
|
+
- uses: actions/checkout@v6
|
|
38
38
|
- run: uname -m
|
|
39
39
|
- run: rustup target add x86_64-apple-darwin
|
|
40
40
|
- run: make download download-dependencies
|
|
41
41
|
- run: rm -r vendor
|
|
42
42
|
- run: make all ARCH=arm64
|
|
43
43
|
- run: make all test ARCH=x86_64
|
|
44
|
-
- uses: actions/upload-artifact@
|
|
44
|
+
- uses: actions/upload-artifact@v5
|
|
45
45
|
with:
|
|
46
46
|
name: on-darwin-arm64
|
|
47
47
|
path: vendor/
|
data/.github/workflows/check.yml
CHANGED
data/CHANGELOG.markdown
CHANGED
data/Makefile
CHANGED
data/checksums.mk
CHANGED
|
@@ -6,7 +6,7 @@ JPEGOPTIM_SHA256 := 661a808dfffa933d78c6beb47a2937d572b9f03e94cbaaab3d4c0d72f410
|
|
|
6
6
|
LIBJPEG_SHA256 := 04705c110cb2469caa79fb71fba3d7bf834914706e9641a4589485c1f832565b
|
|
7
7
|
LIBLCMS2_SHA256 := d11af569e42a1baa1650d20ad61d12e41af4fead4aa7964a01f93b08b53ab074
|
|
8
8
|
LIBMOZJPEG_SHA256 := 9fcbb7171f6ac383f5b391175d6fb3acde5e64c4c4727274eade84ed0998fcc1
|
|
9
|
-
LIBPNG_SHA256 :=
|
|
9
|
+
LIBPNG_SHA256 := ac25cafc2054cda3f6f0fe22ee9fc587024b99e01d03bd72b765824e48f39021
|
|
10
10
|
LIBZ_SHA256 := 17e88863f3600672ab49182f217281b6fc4d3c762bde361935e436a95214d05c
|
|
11
11
|
OPTIPNG_SHA256 := c2579be58c2c66dae9d63154edcb3d427fef64cb00ec0aff079c9d156ec46f29
|
|
12
12
|
OXIPNG_SHA256 := 8f99d5c67efa2a7550023bf610b90e65d421375c9ed7f37097f83ae5c05f85bd
|
data/image_optim_pack.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'image_optim_pack'
|
|
5
|
-
s.version = '0.12.2'
|
|
5
|
+
s.version = '0.12.2.20251130'
|
|
6
6
|
s.summary = %q{Precompiled binaries for image_optim: advpng, gifsicle, jhead, jpeg-recompress, jpegoptim, jpegtran, optipng, oxipng, pngcrush, pngout, pngquant}
|
|
7
7
|
s.homepage = "https://github.com/toy/#{s.name}"
|
|
8
8
|
s.authors = ['Ivan Kuchin']
|
|
Binary file
|
data/vendor/darwin-arm64/optipng
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/vendor/linux-x86_64/optipng
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: image_optim_pack
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.12.2
|
|
4
|
+
version: 0.12.2.20251130
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ivan Kuchin
|
|
@@ -203,7 +203,7 @@ licenses:
|
|
|
203
203
|
metadata:
|
|
204
204
|
bug_tracker_uri: https://github.com/toy/image_optim_pack/issues
|
|
205
205
|
changelog_uri: https://github.com/toy/image_optim_pack/blob/master/CHANGELOG.markdown
|
|
206
|
-
documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.12.2
|
|
206
|
+
documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.12.2.20251130
|
|
207
207
|
source_code_uri: https://github.com/toy/image_optim_pack
|
|
208
208
|
rdoc_options: []
|
|
209
209
|
require_paths:
|