image_optim_pack 0.5.2.20190428 → 0.5.3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2745306c8eb30a90ff8b216fe41cf91111924959133461ab5cfbdd348fbeabcd
4
- data.tar.gz: f56e3e262db91475ef713d16cad735f3e8a5715c67871d90907ca9d1c972bfba
3
+ metadata.gz: 1d3d4f1bcc49c6cc8b1590cd9eda18c6f100d2a07ed068550df85ea20ac9f94c
4
+ data.tar.gz: 3353b4a0d2cb438e5cf56a9491e7af7c7e1a8b14711cc6d22c1c3056579fc2f4
5
5
  SHA512:
6
- metadata.gz: c386fe1468c6de4f0e387430bd5bb4fcf2cf38480884c287684d1eb85d0c40e618d635a23fabbdbf7491ac6d5e21c87f6735a24234403d8a7e08fab1f55cb21d
7
- data.tar.gz: cfe3fabe61ecfbb5a2bdb13a720f59f1743af02a96850df0d0d816014f604269ed5452a909a35ac1fb3ecce808f4e3da1eb73df6758a9aa26dde7444b353095f
6
+ metadata.gz: 6219572d5e78914b12ad52e3698af0e328bc4c0c8f0d712a7989a21337ac13cf431ecb85ea8961d42e858182f329679b025986fbecc46eb784dd1f9195449f6d
7
+ data.tar.gz: 9bb93ac43056d9b4d8f6df03784376918fa6e6e305a83e970f92a432476900b818cb2e18256ee63dae99ad4e0ee4d3b8ae78fdd9629ee5e3b183a65a827c8474
data/.rubocop.yml CHANGED
@@ -14,7 +14,7 @@ Layout/AccessModifierIndentation:
14
14
  Layout/DotPosition:
15
15
  EnforcedStyle: trailing
16
16
 
17
- Layout/IndentHash:
17
+ Layout/IndentFirstHashElement:
18
18
  EnforcedStyle: consistent
19
19
 
20
20
  Layout/RescueEnsureAlignment:
data/CHANGELOG.markdown CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  ## unreleased
4
4
 
5
+ ## v0.5.3 (2019-05-25)
6
+
7
+ * pngquant 2.12.3 [@toy](https://github.com/toy)
8
+ * Enable frozen string literals [@toy](https://github.com/toy)
9
+
5
10
  ## v0.5.2.20190428 (2019-04-28)
6
11
 
7
12
  * gifsicle 1.92 and libpng 1.6.37 [@toy](https://github.com/toy)
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  gemspec :name => 'image_optim_pack'
data/Makefile CHANGED
@@ -13,7 +13,7 @@ LIBPNG_VER := 1.6.37
13
13
  LIBZ_VER := 1.2.11
14
14
  OPTIPNG_VER := 0.7.7
15
15
  PNGCRUSH_VER := 1.8.13
16
- PNGQUANT_VER := 2.12.2
16
+ PNGQUANT_VER := 2.12.3
17
17
 
18
18
  # ====== CHECKSUMS ======
19
19
 
data/boxes/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  gem 'rake'
data/boxes/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'pathname'
2
4
 
3
5
  class Box # :nodoc:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  Veewee::Session.declare({
2
4
  :cpu_count => '1',
3
5
  :memory_size => '512',
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  Veewee::Session.declare({
2
4
  :cpu_count => '1',
3
5
  :memory_size => '512',
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  Veewee::Session.declare({
2
4
  :cpu_count => '1',
3
5
  :memory_size => '512',
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  Veewee::Session.declare({
2
4
  :cpu_count => '1',
3
5
  :memory_size => '512',
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  Veewee::Session.declare({
2
4
  :cpu_count => '1',
3
5
  :memory_size => '512',
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  Veewee::Session.declare({
2
4
  :cpu_count => '1',
3
5
  :memory_size => '512',
data/checksums.mk CHANGED
@@ -9,4 +9,4 @@ LIBPNG_SHA256 := daeb2620d829575513e35fecc83f0d3791a620b9b93d800b763542ece9390fb
9
9
  LIBZ_SHA256 := c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1
10
10
  OPTIPNG_SHA256 := 4f32f233cef870b3f95d3ad6428bfe4224ef34908f1b42b0badf858216654452
11
11
  PNGCRUSH_SHA256 := fed0aaf5c098aa8c7f78c75365cd18d7341417326ecbdba547876b7b4f3df4be
12
- PNGQUANT_SHA256 := bb031c48039ee73ea0e60709bb9ab80c55bfa3a5920b798ea37a03f2757b099c
12
+ PNGQUANT_SHA256 := 8bb076832a3f1c826393f4be62df8b637dfd6493b13d5839ad697a8a80ccf95b
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = 'image_optim_pack'
5
- s.version = '0.5.2.20190428'
5
+ s.version = '0.5.3'
6
6
  s.summary = %q{Precompiled binaries for image_optim: advpng, gifsicle, jhead, jpeg-recompress, jpegoptim, jpegtran, optipng, pngcrush, pngquant}
7
7
  s.homepage = "http://github.com/toy/#{s.name}"
8
8
  s.authors = ['Ivan Kuchin']
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'fspath'
2
4
  require 'image_optim/bin_resolver/bin'
3
5
 
@@ -1 +1,3 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'image_optim/pack'
data/script/livecheck CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
4
  require 'yaml'
4
5
  require 'uri'
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
4
  require 'gems'
4
5
  require 'ostruct'
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'spec_helper'
2
4
  require 'image_optim/pack'
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'spec_helper'
2
4
  require 'image_optim'
3
5
  require 'image_optim/cmd'
data/spec/spec_helper.rb CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  RSpec.configure do |c|
2
4
  c.before do
3
5
  stub_const('ImageOptim::Config::GLOBAL_PATH', '/dev/null')
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: image_optim_pack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2.20190428
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ivan Kuchin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-04-28 00:00:00.000000000 Z
11
+ date: 2019-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: image_optim
@@ -247,7 +247,7 @@ licenses:
247
247
  metadata:
248
248
  bug_tracker_uri: https://github.com/toy/image_optim_pack/issues
249
249
  changelog_uri: https://github.com/toy/image_optim_pack/blob/master/CHANGELOG.markdown
250
- documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.5.2.20190428
250
+ documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.5.3
251
251
  source_code_uri: https://github.com/toy/image_optim_pack
252
252
  post_install_message:
253
253
  rdoc_options: []