This method is deprecated or moved on the latest stable version.
The last existing version (v2_2_9) is shown here.
each_value()
public
Iterates through header values, passing each value to the code block.
# File lib/net/http/header.rb, line 131
def each_value #:yield: +value+
block_given? or return enum_for(__method__)
@header.each_value do |va|
yield va.join(', ')
end
end