class Rack::Head

def call(env)

def call(env)
  _, _, body = response = @app.call(env)
  if env[REQUEST_METHOD] == HEAD
    response[2] = Rack::BodyProxy.new([]) do
      body.close if body.respond_to? :close
    end
  end
  response
end