image_optim_pack 0.5.5-amd64-freebsd → 0.5.6-amd64-freebsd

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: 4e9319d4ad05d0de324e2a38db2b2a4867c9f2367ce82380955154982ae18998
4
- data.tar.gz: 45434634f6c699581c75942e583d1019ff5c24721d3905b57af30300a716f817
3
+ metadata.gz: 2729b172cb2e38e359409097675459e5096a9b440f5f3c9cf4441163ed631ba3
4
+ data.tar.gz: 4dbd71ee2f4acb04cae14c749a52f6e5e6533f59acdbb1a532b2a45c7886586f
5
5
  SHA512:
6
- metadata.gz: 9f13a683aa8fb472c5ff490cf1d125f0ad3252a06ddcd2f9a840ca2ef7bb79cbdfcb5f61598b6c0ef749397cea4153b9f94fa20117eaa3bfbed2b93fc4aeeaa5
7
- data.tar.gz: 9323120acc98a54eb9c9fbbc1f8ab701a90c00029d44b79574a9f416fca5ca7695ca9523431f066f336159f56ac2bd0c27f242a313bf087ce8315384edbfa56c
6
+ metadata.gz: e2eb340c0f34e3cb4848890b7fc0f3c75d53231e450e382bbd7fbe7d340528186321e4ee0e44024114446ebbecaa40d99f51fe8fd2fa91f7b234f91bc02f54eb
7
+ data.tar.gz: 06264b9f29037f330652d91ff28818da8d52b49999dd50c5ce68d32441edc92ce5b416e1ec0b386d85e388c7ffe91a40ab5b9c74e5bf8ac2a827c1e41a9262d7
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: amd64-freebsd
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
@@ -164,7 +164,7 @@ licenses:
164
164
  metadata:
165
165
  bug_tracker_uri: https://github.com/toy/image_optim_pack/issues
166
166
  changelog_uri: https://github.com/toy/image_optim_pack/blob/master/CHANGELOG.markdown
167
- documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.5.5
167
+ documentation_uri: https://www.rubydoc.info/gems/image_optim_pack/0.5.6
168
168
  source_code_uri: https://github.com/toy/image_optim_pack
169
169
  post_install_message:
170
170
  rdoc_options: []