Class: Mongrel::HeaderOut

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

Overview

This class implements a simple way of constructing the HTTP headers dynamically via a Hash syntax. Think of it as a write-only Hash. Refer to HttpResponse for information on how this is used.

One consequence of this write-only nature is that you can write multiple headers by just doing them twice (which is sometimes needed in HTTP), but that the normal semantics for Hash (where doing an insert replaces) is not there.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(out) ⇒ HeaderOut

Returns a new instance of HeaderOut.



213
214
215
# File 'lib/mongrel.rb', line 213

def initialize(out)
  @out = out
end

Instance Attribute Details

#outObject (readonly)

Returns the value of attribute out.



211
212
213
# File 'lib/mongrel.rb', line 211

def out
  @out
end

Instance Method Details

#[]=(key, value) ⇒ Object

Simply writes “#key: #value” to an output buffer.



218
219
220
# File 'lib/mongrel.rb', line 218

def[]=(key,value)
  @out.write(Const::HEADER_FORMAT % [key, value])
end