rack-smusher 0.0.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/.gitignore +3 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +22 -0
- data/README.md +23 -0
- data/Rakefile +2 -0
- data/lib/rack/smusher.rb +44 -0
- data/rack-smusher.gemspec +22 -0
- metadata +74 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Gemfile.lock
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
rack-smusher (0.0.1)
|
5
|
+
|
6
|
+
GEM
|
7
|
+
remote: http://rubygems.org/
|
8
|
+
specs:
|
9
|
+
httpclient (2.1.6)
|
10
|
+
json (1.4.6)
|
11
|
+
rake (0.8.7)
|
12
|
+
smusher (0.4.6)
|
13
|
+
httpclient
|
14
|
+
json
|
15
|
+
rake
|
16
|
+
|
17
|
+
PLATFORMS
|
18
|
+
ruby
|
19
|
+
|
20
|
+
DEPENDENCIES
|
21
|
+
rack-smusher!
|
22
|
+
smusher
|
data/README.md
ADDED
@@ -0,0 +1,23 @@
|
|
1
|
+
# rack-smusher
|
2
|
+
|
3
|
+
rack-smusher is a rack middleware to compress (smush) images by using the [smusher](https://github.com/grosser/smusher) gem.
|
4
|
+
|
5
|
+
It is intended to be used with [serve](http://github.com/jlong/serve), but it may work with other Rack-based frameworks (Sinatra, I'm looking at you)
|
6
|
+
|
7
|
+
**Your original images will never be touched**. rack-smusher works on copies of your files.
|
8
|
+
|
9
|
+
## Why?
|
10
|
+
|
11
|
+
Because I like to save my Fireworks editable files in the public folder while designing / prototyping. That, and it seemed like a fun miniproject.
|
12
|
+
|
13
|
+
|
14
|
+
## Usage
|
15
|
+
|
16
|
+
gem 'rack-smusher'
|
17
|
+
require 'rack/smusher'
|
18
|
+
|
19
|
+
use Rack::Smusher, {
|
20
|
+
:cache_path => "cache",
|
21
|
+
:image_path => "public"
|
22
|
+
}
|
23
|
+
|
data/Rakefile
ADDED
data/lib/rack/smusher.rb
ADDED
@@ -0,0 +1,44 @@
|
|
1
|
+
require "rack"
|
2
|
+
require "smusher"
|
3
|
+
require 'digest/md5'
|
4
|
+
|
5
|
+
class Rack::Smusher
|
6
|
+
|
7
|
+
VERSION = "0.0.1"
|
8
|
+
|
9
|
+
def initialize(app, options = {}, &block)
|
10
|
+
@app = app
|
11
|
+
@options = {
|
12
|
+
:cache => true,
|
13
|
+
:cache_path => ".cache",
|
14
|
+
:image_path => "public"
|
15
|
+
}.merge(options)
|
16
|
+
if !File.exist? @options[:cache_path]
|
17
|
+
mkdir @options[:cache_path]
|
18
|
+
end
|
19
|
+
instance_eval(&block) if block_given?
|
20
|
+
end
|
21
|
+
|
22
|
+
def call(env)
|
23
|
+
status, headers, body = @app.call(env)
|
24
|
+
|
25
|
+
type = headers['Content-Type']
|
26
|
+
|
27
|
+
if type == 'image/png'
|
28
|
+
file = @options[:image_path] + env['PATH_INFO']
|
29
|
+
file_hash = Digest::MD5.hexdigest(File.read(file))
|
30
|
+
|
31
|
+
target = @options[:cache_path] + '/' + file_hash + '_' + File.basename(file)
|
32
|
+
if !File.exist? target || @options[:cache] == false
|
33
|
+
cp_r file, target, { :verbose => false }
|
34
|
+
%x(smusher #{target})
|
35
|
+
end
|
36
|
+
|
37
|
+
body = File.read(target)
|
38
|
+
end
|
39
|
+
|
40
|
+
@response = Rack::Response.new(body, status, headers)
|
41
|
+
@response.to_a
|
42
|
+
end
|
43
|
+
|
44
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
3
|
+
|
4
|
+
require 'rack/smusher'
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = "rack-smusher"
|
8
|
+
s.version = Rack::Smusher::VERSION
|
9
|
+
s.platform = Gem::Platform::RUBY
|
10
|
+
s.authors = ["Ale Muñoz"]
|
11
|
+
s.email = ["bomberstudios@gmail.com"]
|
12
|
+
s.homepage = "http://github.com/bomberstudios/rack-smusher"
|
13
|
+
s.summary = %q{Smush your images}
|
14
|
+
s.description = %q{rack-smusher uses the smusher gem to compress your images dinamically}
|
15
|
+
|
16
|
+
s.rubyforge_project = "rack-smusher"
|
17
|
+
|
18
|
+
s.files = `git ls-files`.split("\n")
|
19
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
20
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
21
|
+
s.require_paths = ["lib"]
|
22
|
+
end
|
metadata
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rack-smusher
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 29
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 0.0.1
|
11
|
+
platform: ruby
|
12
|
+
authors:
|
13
|
+
- "Ale Mu\xC3\xB1oz"
|
14
|
+
autorequire:
|
15
|
+
bindir: bin
|
16
|
+
cert_chain: []
|
17
|
+
|
18
|
+
date: 2010-12-29 00:00:00 +01:00
|
19
|
+
default_executable:
|
20
|
+
dependencies: []
|
21
|
+
|
22
|
+
description: rack-smusher uses the smusher gem to compress your images dinamically
|
23
|
+
email:
|
24
|
+
- bomberstudios@gmail.com
|
25
|
+
executables: []
|
26
|
+
|
27
|
+
extensions: []
|
28
|
+
|
29
|
+
extra_rdoc_files: []
|
30
|
+
|
31
|
+
files:
|
32
|
+
- .gitignore
|
33
|
+
- Gemfile
|
34
|
+
- Gemfile.lock
|
35
|
+
- README.md
|
36
|
+
- Rakefile
|
37
|
+
- lib/rack/smusher.rb
|
38
|
+
- rack-smusher.gemspec
|
39
|
+
has_rdoc: true
|
40
|
+
homepage: http://github.com/bomberstudios/rack-smusher
|
41
|
+
licenses: []
|
42
|
+
|
43
|
+
post_install_message:
|
44
|
+
rdoc_options: []
|
45
|
+
|
46
|
+
require_paths:
|
47
|
+
- lib
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ">="
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
hash: 3
|
54
|
+
segments:
|
55
|
+
- 0
|
56
|
+
version: "0"
|
57
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
58
|
+
none: false
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
hash: 3
|
63
|
+
segments:
|
64
|
+
- 0
|
65
|
+
version: "0"
|
66
|
+
requirements: []
|
67
|
+
|
68
|
+
rubyforge_project: rack-smusher
|
69
|
+
rubygems_version: 1.3.7
|
70
|
+
signing_key:
|
71
|
+
specification_version: 3
|
72
|
+
summary: Smush your images
|
73
|
+
test_files: []
|
74
|
+
|