tiny_png 1.1.0 → 1.1.1
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.
- data/README.md +2 -2
- data/lib/tiny_png.rb +2 -2
- data/lib/tiny_png/version.rb +1 -1
- metadata +10 -5
data/README.md
CHANGED
|
@@ -16,7 +16,7 @@ PNGs smaller (which reduces bandwidth and increases site performance).
|
|
|
16
16
|
|
|
17
17
|
## What Does This Gem Do
|
|
18
18
|
|
|
19
|
-
TinyPNG has opened up a private beta for programmatically
|
|
19
|
+
TinyPNG has opened up a private beta for programmatically using their services. Before
|
|
20
20
|
this API was introduced, TinyPNG could only be used from their [web interface](http://www.tinypng.org).
|
|
21
21
|
And while their homepage is cool and all, manually uploading and saving files is a less-than-enjoyable
|
|
22
22
|
process. The kind of process a computer was made to do for you. Ergo this gem.
|
|
@@ -229,4 +229,4 @@ variable:
|
|
|
229
229
|
|
|
230
230
|
```ruby
|
|
231
231
|
set :tiny_png_server_role, [:web, :app]
|
|
232
|
-
```
|
|
232
|
+
```
|
data/lib/tiny_png.rb
CHANGED
|
@@ -3,9 +3,9 @@ end
|
|
|
3
3
|
|
|
4
4
|
require 'base64'
|
|
5
5
|
require 'httparty'
|
|
6
|
-
require 'tiny_png/client'
|
|
7
6
|
require 'tiny_png/version'
|
|
8
7
|
require 'tiny_png/exceptions'
|
|
9
8
|
require 'tiny_png/shrink'
|
|
10
9
|
require 'tiny_png/exception_handling'
|
|
11
|
-
require 'tiny_png/path'
|
|
10
|
+
require 'tiny_png/path'
|
|
11
|
+
require 'tiny_png/client'
|
data/lib/tiny_png/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tiny_png
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,11 +9,11 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2013-10-31 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: httparty
|
|
16
|
-
requirement:
|
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
none: false
|
|
18
18
|
requirements:
|
|
19
19
|
- - ! '>='
|
|
@@ -21,7 +21,12 @@ dependencies:
|
|
|
21
21
|
version: '0'
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
|
-
version_requirements:
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
none: false
|
|
26
|
+
requirements:
|
|
27
|
+
- - ! '>='
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: '0'
|
|
25
30
|
description: Use the TinyPNG service to minimize the size of your image files.
|
|
26
31
|
email: chris@thesturgills.com
|
|
27
32
|
executables: []
|
|
@@ -69,7 +74,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
69
74
|
version: '0'
|
|
70
75
|
requirements: []
|
|
71
76
|
rubyforge_project: tiny_png
|
|
72
|
-
rubygems_version: 1.8.
|
|
77
|
+
rubygems_version: 1.8.25
|
|
73
78
|
signing_key:
|
|
74
79
|
specification_version: 3
|
|
75
80
|
summary: Make your PNGs tiny
|