Class: Mail::KeywordsField
Constant Summary
collapse
- FIELD_NAME =
'keywords'
- CAPITALIZED_FIELD =
'Keywords'
Constants included
from Utilities
Utilities::CRLF, Utilities::LF, Utilities::TO_CRLF_REGEX
Constants included
from Constants
Constants::ASTERISK, Constants::ATOM_UNSAFE, Constants::B_VALUES, Constants::CAPITAL_M, Constants::COLON, Constants::CONTROL_CHAR, Constants::CR, Constants::CRLF, Constants::CR_ENCODED, Constants::EMPTY, Constants::ENCODED_VALUE, Constants::EQUAL_LF, Constants::FIELD_BODY, Constants::FIELD_LINE, Constants::FIELD_PREFIX, Constants::FIELD_SPLIT, Constants::FULL_ENCODED_VALUE, Constants::FWS, Constants::HEADER_LINE, Constants::HEADER_SPLIT, Constants::HYPHEN, Constants::LF, Constants::LF_ENCODED, Constants::NULL_SENDER, Constants::PHRASE_UNSAFE, Constants::QP_SAFE, Constants::QP_UNSAFE, Constants::Q_VALUES, Constants::SPACE, Constants::TEXT, Constants::TOKEN_UNSAFE, Constants::UNDERSCORE, Constants::WSP
Instance Method Summary
collapse
#charset, #charset=, #errors
Methods included from Utilities
#atom_safe?, binary_unsafe_to_crlf, binary_unsafe_to_lf, blank?, #bracket, #capitalize_field, #constantize, #dasherize, #dquote, #escape_paren, #map_lines, #map_with_index, #match_to_s, #paren, #quote_atom, #quote_phrase, #quote_token, safe_for_line_ending_conversion?, to_crlf, to_lf, #token_safe?, #unbracket, #underscoreize, unescape, #unparen, unquote, #uri_escape, #uri_parser, #uri_unescape
#field_length, #name, #name=, #responsible_for?, #to_s, #value, #value=
Constructor Details
#initialize(value = nil, charset = 'utf-8') ⇒ KeywordsField
Returns a new instance of KeywordsField.
11
12
13
14
15
|
# File 'lib/mail/fields/keywords_field.rb', line 11
def initialize(value = nil, charset = 'utf-8')
self.charset = charset
super(CAPITALIZED_FIELD, value, charset)
self
end
|
Instance Method Details
#decoded ⇒ Object
35
36
37
|
# File 'lib/mail/fields/keywords_field.rb', line 35
def decoded
keywords.join(', ')
end
|
#default ⇒ Object
39
40
41
|
# File 'lib/mail/fields/keywords_field.rb', line 39
def default
keywords
end
|
#encoded ⇒ Object
31
32
33
|
# File 'lib/mail/fields/keywords_field.rb', line 31
def encoded
"#{CAPITALIZED_FIELD}: #{keywords.join(",\r\n ")}\r\n"
end
|
#keywords ⇒ Object
27
28
29
|
# File 'lib/mail/fields/keywords_field.rb', line 27
def keywords
phrase_list.phrases
end
|
#parse(val = value) ⇒ Object
17
18
19
20
21
|
# File 'lib/mail/fields/keywords_field.rb', line 17
def parse(val = value)
unless Utilities.blank?(val)
@phrase_list ||= PhraseList.new(value)
end
end
|
#phrase_list ⇒ Object
23
24
25
|
# File 'lib/mail/fields/keywords_field.rb', line 23
def phrase_list
@phrase_list ||= PhraseList.new(value)
end
|