class Rack::Head
Rack::Head returns an empty body for all HEAD requests. It leaves all other requests unchanged.
Public Class Methods
new(app)
click to toggle source
# File lib/rack/head.rb, line 6 def initialize(app) @app = app end
Public Instance Methods
call(env)
click to toggle source
# File lib/rack/head.rb, line 10 def call(env) status, headers, body = @app.call(env) if env[REQUEST_METHOD] == HEAD [ status, headers, Rack::BodyProxy.new([]) do body.close if body.respond_to? :close end ] else [status, headers, body] end end