Class: Protocol::HTTP::Headers::Merged
- Inherits:
-
Object
- Object
- Protocol::HTTP::Headers::Merged
- Includes:
- Enumerable
- Defined in:
- lib/protocol/http/headers.rb
Overview
Used for merging objects into a sequential list of headers. Normalizes header keys and values.
Instance Method Summary collapse
- #<<(headers) ⇒ Object
- #clear ⇒ Object
- #each {|String, String| ... } ⇒ Object
-
#initialize(*all) ⇒ Merged
constructor
A new instance of Merged.
Constructor Details
#initialize(*all) ⇒ Merged
Returns a new instance of Merged.
255 256 257 |
# File 'lib/protocol/http/headers.rb', line 255 def initialize(*all) @all = all end |
Instance Method Details
#<<(headers) ⇒ Object
263 264 265 266 267 |
# File 'lib/protocol/http/headers.rb', line 263 def << headers @all << headers return self end |
#clear ⇒ Object
259 260 261 |
# File 'lib/protocol/http/headers.rb', line 259 def clear @all.clear end |
#each {|String, String| ... } ⇒ Object
270 271 272 273 274 275 276 |
# File 'lib/protocol/http/headers.rb', line 270 def each(&block) @all.each do |headers| headers.each do |key, value| yield key.downcase, value.to_s end end end |