Sha256: a887ae6a8c9bfc8181773318f88a8a618d442e3083b9260d0716e85892e5c4ac
Contents?: true
Size: 394 Bytes
Versions: 49
Compression:
Stored size: 394 Bytes
Contents
# encoding: utf-8 # frozen_string_literal: true # # # module Mail class ContentDescriptionField < UnstructuredField FIELD_NAME = 'content-description' CAPITALIZED_FIELD = 'Content-Description' def initialize(value = nil, charset = 'utf-8') self.charset = charset super(CAPITALIZED_FIELD, value, charset) self.parse self end end end
Version data entries
49 entries across 35 versions & 9 rubygems