imageproxy 0.1.1 → 0.1.2
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/VERSION +1 -1
- data/config.ru +1 -2
- data/imageproxy.gemspec +10 -10
- data/lib/imageproxy.rb +5 -0
- data/spec/options_spec.rb +1 -2
- metadata +11 -11
- data/imageproxy.rb +0 -4
- /data/lib/{command.rb → imageproxy/command.rb} +0 -0
- /data/lib/{compare.rb → imageproxy/compare.rb} +0 -0
- /data/lib/{convert.rb → imageproxy/convert.rb} +0 -0
- /data/lib/{identify.rb → imageproxy/identify.rb} +0 -0
- /data/lib/{options.rb → imageproxy/options.rb} +0 -0
- /data/lib/{selftest.rb → imageproxy/selftest.rb} +0 -0
- /data/lib/{server.rb → imageproxy/server.rb} +0 -0
- /data/lib/{signature.rb → imageproxy/signature.rb} +0 -0
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.1.
|
|
1
|
+
0.1.2
|
data/config.ru
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
require 'bundler'
|
|
2
2
|
require 'rack/sendfile'
|
|
3
3
|
|
|
4
|
-
require File.join(File.expand_path(File.dirname(__FILE__)), "imageproxy")
|
|
5
|
-
require File.join(File.expand_path(File.dirname(__FILE__)), "lib", "server")
|
|
4
|
+
require File.join(File.expand_path(File.dirname(__FILE__)), "lib", "imageproxy")
|
|
6
5
|
|
|
7
6
|
run Rack::Sendfile.new(Imageproxy::Server.new)
|
data/imageproxy.gemspec
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{imageproxy}
|
|
8
|
-
s.version = "0.1.
|
|
8
|
+
s.version = "0.1.2"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Erik Hanson"]
|
|
@@ -26,15 +26,15 @@ Gem::Specification.new do |s|
|
|
|
26
26
|
"VERSION",
|
|
27
27
|
"config.ru",
|
|
28
28
|
"imageproxy.gemspec",
|
|
29
|
-
"imageproxy.rb",
|
|
30
|
-
"lib/command.rb",
|
|
31
|
-
"lib/compare.rb",
|
|
32
|
-
"lib/convert.rb",
|
|
33
|
-
"lib/identify.rb",
|
|
34
|
-
"lib/options.rb",
|
|
35
|
-
"lib/selftest.rb",
|
|
36
|
-
"lib/server.rb",
|
|
37
|
-
"lib/signature.rb",
|
|
29
|
+
"lib/imageproxy.rb",
|
|
30
|
+
"lib/imageproxy/command.rb",
|
|
31
|
+
"lib/imageproxy/compare.rb",
|
|
32
|
+
"lib/imageproxy/convert.rb",
|
|
33
|
+
"lib/imageproxy/identify.rb",
|
|
34
|
+
"lib/imageproxy/options.rb",
|
|
35
|
+
"lib/imageproxy/selftest.rb",
|
|
36
|
+
"lib/imageproxy/server.rb",
|
|
37
|
+
"lib/imageproxy/signature.rb",
|
|
38
38
|
"public/background.png",
|
|
39
39
|
"public/sample.png",
|
|
40
40
|
"public/sample_10x20.png",
|
data/lib/imageproxy.rb
ADDED
data/spec/options_spec.rb
CHANGED
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: imageproxy
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.1.
|
|
5
|
+
version: 0.1.2
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Erik Hanson
|
|
@@ -131,15 +131,15 @@ files:
|
|
|
131
131
|
- VERSION
|
|
132
132
|
- config.ru
|
|
133
133
|
- imageproxy.gemspec
|
|
134
|
-
- imageproxy.rb
|
|
135
|
-
- lib/command.rb
|
|
136
|
-
- lib/compare.rb
|
|
137
|
-
- lib/convert.rb
|
|
138
|
-
- lib/identify.rb
|
|
139
|
-
- lib/options.rb
|
|
140
|
-
- lib/selftest.rb
|
|
141
|
-
- lib/server.rb
|
|
142
|
-
- lib/signature.rb
|
|
134
|
+
- lib/imageproxy.rb
|
|
135
|
+
- lib/imageproxy/command.rb
|
|
136
|
+
- lib/imageproxy/compare.rb
|
|
137
|
+
- lib/imageproxy/convert.rb
|
|
138
|
+
- lib/imageproxy/identify.rb
|
|
139
|
+
- lib/imageproxy/options.rb
|
|
140
|
+
- lib/imageproxy/selftest.rb
|
|
141
|
+
- lib/imageproxy/server.rb
|
|
142
|
+
- lib/imageproxy/signature.rb
|
|
143
143
|
- public/background.png
|
|
144
144
|
- public/sample.png
|
|
145
145
|
- public/sample_10x20.png
|
|
@@ -163,7 +163,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
163
163
|
requirements:
|
|
164
164
|
- - ">="
|
|
165
165
|
- !ruby/object:Gem::Version
|
|
166
|
-
hash:
|
|
166
|
+
hash: 3737548046343188877
|
|
167
167
|
segments:
|
|
168
168
|
- 0
|
|
169
169
|
version: "0"
|
data/imageproxy.rb
DELETED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|