image_optim_bin 0.0.5 → 0.0.6

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
  SHA1:
3
- metadata.gz: c33f70442308f0c80b4a1079631f5f7149a87532
4
- data.tar.gz: f78a68b94c1fff4e11a0a58cea5f0138f031f291
3
+ metadata.gz: b6b63721ee15c40daa508f1400223bbf57360476
4
+ data.tar.gz: 751857c06c52e4405a17a198559dcae1496cbcb0
5
5
  SHA512:
6
- metadata.gz: d80868b878a7779824aa8e8c58389ccde2200d9c8c5d491560247520387073fcd282cecdbaf4b90e628eef15ec94410bf52954376d64fcbdbab2b94229e0a58d
7
- data.tar.gz: d73abc4e9a66fef971ddc682b2e54c9210ac63923d85983bf8b3dc7d10c2904e5331e2a712090a057174ed3914f6db5705ef32c181bdb4e34a1d4b32f115f008
6
+ metadata.gz: 2aadfabea3e7b610bd8581d279e48b45745a85ff98476021de751a91fcf8b73ccfd9bd99e880fa116c4411bc8fcaaa33db3b872b83dc1c23006af6e8b99cf1af
7
+ data.tar.gz: a4bb1f3bf47021624ac8ab9ad314d3ea7a71120f122cdd61c2907584bfb4a454c6cc037f0dc2c7c33b5f52d1335afb2a5f48ff2b3b733f49b823473061c745f7
@@ -14,7 +14,6 @@ Gem::Specification.new do |spec|
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
17
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
18
  spec.require_paths = ["lib"]
20
19
 
@@ -4,7 +4,7 @@ module ImageOptimBin
4
4
  def self.set_env
5
5
  if `uname`.to_s.strip == 'Linux' && `uname -m`.to_s.strip == 'x86_64'
6
6
  %w(jpegoptim jpegtran optipng pngcrush pngout advpng advdef advmng advzip gifsicle).each do |name|
7
- ENV["#{name}_bin".upcase] = File.expand_path(File.join(File.dirname(__FILE__), "..", "bin", name))
7
+ ENV["#{name}_bin".upcase] = File.expand_path(File.join(File.dirname(__FILE__), "..", "vendor", name))
8
8
  end
9
9
  end
10
10
  end
@@ -1,3 +1,3 @@
1
1
  module ImageOptimBin
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: image_optim_bin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mooktakim Ahmed
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-05 00:00:00.000000000 Z
11
+ date: 2014-10-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -42,17 +42,7 @@ description: Statically compiled bins to make image_optim work on Linux x86_64 o
42
42
  Heroku
43
43
  email:
44
44
  - Mooktakim@fluxter.co.uk
45
- executables:
46
- - advdef
47
- - advmng
48
- - advpng
49
- - advzip
50
- - gifsicle
51
- - jpegoptim
52
- - jpegtran
53
- - optipng
54
- - pngcrush
55
- - pngout
45
+ executables: []
56
46
  extensions: []
57
47
  extra_rdoc_files: []
58
48
  files:
@@ -61,19 +51,19 @@ files:
61
51
  - LICENSE.txt
62
52
  - README.md
63
53
  - Rakefile
64
- - bin/advdef
65
- - bin/advmng
66
- - bin/advpng
67
- - bin/advzip
68
- - bin/gifsicle
69
- - bin/jpegoptim
70
- - bin/jpegtran
71
- - bin/optipng
72
- - bin/pngcrush
73
- - bin/pngout
74
54
  - image_optim_bin.gemspec
75
55
  - lib/image_optim_bin.rb
76
56
  - lib/image_optim_bin/version.rb
57
+ - vendor/advdef
58
+ - vendor/advmng
59
+ - vendor/advpng
60
+ - vendor/advzip
61
+ - vendor/gifsicle
62
+ - vendor/jpegoptim
63
+ - vendor/jpegtran
64
+ - vendor/optipng
65
+ - vendor/pngcrush
66
+ - vendor/pngout
77
67
  homepage: ''
78
68
  licenses:
79
69
  - MIT