Class: Rack::Head
- Inherits:
 - 
      Object
      
        
- Object
 - Rack::Head
 
 
- 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
- #call(env) ⇒ Object
 - 
  
    
      #initialize(app)  ⇒ Head 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Head.
 
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  |