Class: Rack::Head

Inherits:
Object
  • Object
show all
Defined in:
lib/rack/head.rb

Overview

Rack::Head returns an empty body for all HEAD requests. It leaves all other requests unchanged.

Instance Method Summary collapse

Constructor Details

#initialize(app) ⇒ Head

Returns a new instance of Head.



7
8
9
# File 'lib/rack/head.rb', line 7

def initialize(app)
  @app = app
end

Instance Method Details

#call(env) ⇒ Object



11
12
13
14
15
16
17
18
19
20
21
22
23
# File 'lib/rack/head.rb', line 11

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