instiki/vendor/plugins/rack/lib/rack/head.rb

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