class Merged
Used for merging objects into a sequential list of headers. Normalizes header keys and values.
Definitions
def each(&block)
Implementation
def each(&block)
return to_enum unless block_given?
@all.each do |headers|
headers.each do |key, value|
yield key.to_s.downcase, value.to_s
end
end
end