image_optim_bin 0.0.3 → 0.0.4

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
  SHA1:
3
- metadata.gz: 7b82cc8419cc9b14305129e61d0e1cfd09441f1a
4
- data.tar.gz: 0f8e64bc2b0ade60297f3c2c7fc5a0855310bd98
3
+ metadata.gz: 31516d9cad2b7f610939b5408a8739b1046b5870
4
+ data.tar.gz: e16a3ff82d7e3fb5af3c1ba04fa7c5a107d81f43
5
5
  SHA512:
6
- metadata.gz: 737deee884990a27538067f3398fdd6a967835fc2c4b502bd90f4cb2fda42ae8df550577506e0618f4001ea0285ffb5b61b2e2a1ae411f4201415cb97d456437
7
- data.tar.gz: c89cd70f661f196d97f86c313724d6f9a06ad2bafbcbedb0f01bb15e4293c8355313ed636489204d19dbf44b67dde01dfa036ea36c38cc8339889f8b65ea94db
6
+ metadata.gz: a3eb9181043faa72a8d1b752467d082d2c48fed9608f4ed4699fa2d1dd40c003bf0f4606ef007c4e8ada0ceb523770613852fe60d8ebf45b9a6379011ecc19d4
7
+ data.tar.gz: 217ed6745afc45db78e87eedc12585dddde89b00d30d62aa3aaabdebad85e871f9c3ac96b389cee08864d2323e5a3c8ea5278f17b396afcb449fbf9f00bd85e3
data/README.md CHANGED
@@ -27,6 +27,9 @@ This gem sets ENV variables for the individual bins:
27
27
  - `PNGCRUSH_BIN`
28
28
  - `PNGOUT_BIN`
29
29
  - `ADVPNG_BIN`
30
+ - `ADVDEF_BIN`
31
+ - `ADVMNG_BIN`
32
+ - `ADVZIP_BIN`
30
33
 
31
34
  ## Contributing
32
35
 
data/bin/advdef ADDED
Binary file
data/bin/advmng ADDED
Binary file
data/bin/advpng CHANGED
Binary file
data/bin/advzip ADDED
Binary file
@@ -1,3 +1,3 @@
1
1
  module ImageOptimBin
2
- VERSION = "0.0.3"
2
+ VERSION = "0.0.4"
3
3
  end
@@ -3,7 +3,7 @@ require "image_optim_bin/version"
3
3
  module ImageOptimBin
4
4
  def self.set_env
5
5
  if `uname`.to_s.strip == 'Linux' && `uname -m`.to_s.strip == 'x86_64'
6
- %w(jpegoptim jpegtran optipng pngcrush pngout advpng).each do |name|
6
+ %w(jpegoptim jpegtran optipng pngcrush pngout advpng advdef advmng advzip).each do |name|
7
7
  ENV["#{name}_bin".upcase] = File.expand_path(File.join(File.dirname(__FILE__), "..", "bin", name))
8
8
  end
9
9
  end
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.3
4
+ version: 0.0.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mooktakim Ahmed
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-09-29 00:00:00.000000000 Z
11
+ date: 2013-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -43,7 +43,10 @@ description: Statically compiled bins to make image_optim work on Linux x86_64 o
43
43
  email:
44
44
  - Mooktakim@fluxter.co.uk
45
45
  executables:
46
+ - advdef
47
+ - advmng
46
48
  - advpng
49
+ - advzip
47
50
  - jpegoptim
48
51
  - jpegtran
49
52
  - optipng
@@ -57,7 +60,10 @@ files:
57
60
  - LICENSE.txt
58
61
  - README.md
59
62
  - Rakefile
63
+ - bin/advdef
64
+ - bin/advmng
60
65
  - bin/advpng
66
+ - bin/advzip
61
67
  - bin/jpegoptim
62
68
  - bin/jpegtran
63
69
  - bin/optipng
@@ -86,7 +92,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
92
  version: '0'
87
93
  requirements: []
88
94
  rubyforge_project:
89
- rubygems_version: 2.0.7
95
+ rubygems_version: 2.1.11
90
96
  signing_key:
91
97
  specification_version: 4
92
98
  summary: Statically compiled bins for image_optim