image_optim_pack 0.5.5 → 0.5.6

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: bb718bfa967c2762d627c86b3ae0469851f271170c4baa04621f44370c6c5746
4
- data.tar.gz: f5b303beeccb93521944676b1b515174ae634ae1277c017e087461ae198dc90f
3
+ metadata.gz: 8edef5d311259633c5b03a562ebaac08012d22aff73a6e8807669be4100f645e
4
+ data.tar.gz: 6d3108c1d248beab0ac15277342904f34f237acf9cac9a00c8d85dc63d63082f
5
5
  SHA512:
6
- metadata.gz: 78d43df6c2190a5b1e71b8923efd18b59f008f35b5e6c274a220df836b282d60762f5fc5df6219112bcf07949188b7df43b70bb5f36510e34910a31e2e180bcd
7
- data.tar.gz: 1b452d83e53e15225dc64f17122aca50ba9ac36f8b93e4660eca64cc427c3e7268f667c5b130e3799c0d51c1fb2e9568548ed46e78a50713c39bb0ec7d1a8657
6
+ metadata.gz: e3f9d22f747fe3b9f44146b1599344d3086df7627e81608d28f3d2c8fe4a0c03566e5547e2f27b91f593a305acface0ceb1171ebe3733ed12e7dbe24a4f3884e
7
+ data.tar.gz: 83ec0d89034f15f5b1e8dd14f00f9c84eb2288176e99d154f06ab0b60565d82dc9421743df35bdef96a7574284ddc3c84d6702d84f3e0a80e3f0a84505f70c90
data/.rubocop.yml CHANGED
@@ -30,6 +30,9 @@ Metrics/BlockLength:
30
30
  Exclude:
31
31
  - spec/**/*_spec.rb
32
32
 
33
+ Metrics/LineLength:
34
+ Max: 120
35
+
33
36
  Metrics/MethodLength:
34
37
  Max: 15
35
38
 
data/.travis.yml CHANGED
@@ -1,4 +1,5 @@
1
1
  sudo: false
2
+ dist: trusty
2
3
  language: ruby
3
4
  rvm:
4
5
  - '1.8.7-p371'
data/CHANGELOG.markdown CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  ## unreleased
4
4
 
5
+ ## v0.5.6 (2019-07-18)
6
+
7
+ * Ignore dotfiles alongside libraries when selecting path with compatible binaries [@toy](https://github.com/toy)
8
+
5
9
  ## v0.5.5 (2019-07-14)
6
10
 
7
11
  * Fix specifying platform in gemspec for platform specific gems [@toy](https://github.com/toy)
@@ -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.5'
5
+ s.version = '0.5.6'
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']
@@ -60,7 +60,7 @@ class ImageOptim
60
60
 
61
61
  # All children except those starting with 'lib'
62
62
  def bin_paths
63
- path.children.reject{ |child| child.basename.to_s =~ /^lib/ }
63
+ path.children.reject{ |child| child.basename.to_s.start_with?('lib', '.') }
64
64
  end
65
65
  end
66
66
 
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.5
4
+ version: 0.5.6
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-07-14 00:00:00.000000000 Z
11
+ date: 2019-07-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: image_optim
@@ -249,7 +249,7 @@ licenses:
249
249
  metadata:
250
250
  bug_tracker_uri: https://github.com/toy/image_optim_pack/issues
251
251
  changelog_uri: https://github.com/toy/image_optim_pack/blob/master/CHANGELOG.markdown
252
- documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.5.5
252
+ documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.5.6
253
253
  source_code_uri: https://github.com/toy/image_optim_pack
254
254
  post_install_message:
255
255
  rdoc_options: []