76f388f3e2
Incorporate patch from Revision 496.
20 lines
257 B
Ruby
20 lines
257 B
Ruby
module Rack
|
|
|
|
class Head
|
|
def initialize(app)
|
|
@app = app
|
|
end
|
|
|
|
def call(env)
|
|
status, headers, body = @app.call(env)
|
|
|
|
if env["REQUEST_METHOD"] == "HEAD"
|
|
[status, headers, []]
|
|
else
|
|
[status, headers, body]
|
|
end
|
|
end
|
|
end
|
|
|
|
end
|