Sha256: 67987483f629646b55a7187c8fb01e7408ce94d277ad61eec38c5f6be8fdd508
Contents?: true
Size: 418 Bytes
Versions: 49
Compression:
Stored size: 418 Bytes
Contents
# encoding: utf-8 # frozen_string_literal: true # # The field names of any optional-field MUST NOT be identical to any # field name specified elsewhere in this standard. # # optional-field = field-name ":" unstructured CRLF require 'mail/fields/unstructured_field' module Mail class OptionalField < UnstructuredField private def do_encode "#{wrapped_value}\r\n" end end end
Version data entries
49 entries across 35 versions & 9 rubygems