class Protocol::HTTP::Header::Accept
def initialize(value = nil)
Parse the `accept` header value into a list of content types.
def initialize(value = nil) if value super(value.scan(SEPARATOR).map(&:strip)) end end
def initialize(value = nil) if value super(value.scan(SEPARATOR).map(&:strip)) end end