Class: Mail::ReceivedElement
Constant Summary
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_NAME, Constants::FIELD_PREFIX, Constants::FIELD_SPLIT, 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
Methods included from Utilities
#atom_safe?, #bracket, #capitalize_field, #constantize, #dasherize, #dquote, #escape_paren, #map_lines, #map_with_index, #match_to_s, #paren, #quote_atom, #quote_phrase, #quote_token, #token_safe?, #unbracket, #underscoreize, #unparen, #unquote, #uri_escape, #uri_parser, #uri_unescape
Constructor Details
7
8
9
10
11
|
# File 'lib/mail/elements/received_element.rb', line 7
def initialize( string )
received = Mail::Parsers::ReceivedParser.new.parse(string)
@date_time = ::DateTime.parse("#{received.date} #{received.time}")
@info = received.info
end
|
Instance Method Details
#date_time ⇒ Object
13
14
15
|
# File 'lib/mail/elements/received_element.rb', line 13
def date_time
@date_time
end
|
17
18
19
|
# File 'lib/mail/elements/received_element.rb', line 17
def info
@info
end
|
#to_s(*args) ⇒ Object
21
22
23
|
# File 'lib/mail/elements/received_element.rb', line 21
def to_s(*args)
"#{@info}; #{@date_time.to_s(*args)}"
end
|