Class: Mail::ContentTypeElement
- Includes:
- Utilities
- Defined in:
- lib/mail/elements/content_type_element.rb
Overview
:nodoc:
Constant Summary
Constants included from Constants
Mail::Constants::ASTERISK, Mail::Constants::ATOM_UNSAFE, Mail::Constants::B_VALUES, Mail::Constants::CAPITAL_M, Mail::Constants::COLON, Mail::Constants::CONTROL_CHAR, Mail::Constants::CR, Mail::Constants::CRLF, Mail::Constants::CR_ENCODED, Mail::Constants::EMPTY, Mail::Constants::ENCODED_VALUE, Mail::Constants::EQUAL_LF, Mail::Constants::FIELD_BODY, Mail::Constants::FIELD_LINE, Mail::Constants::FIELD_NAME, Mail::Constants::FIELD_PREFIX, Mail::Constants::FIELD_SPLIT, Mail::Constants::FWS, Mail::Constants::HEADER_LINE, Mail::Constants::HEADER_SPLIT, Mail::Constants::HYPHEN, Mail::Constants::LF, Mail::Constants::LF_ENCODED, Mail::Constants::NULL_SENDER, Mail::Constants::PHRASE_UNSAFE, Mail::Constants::QP_SAFE, Mail::Constants::QP_UNSAFE, Mail::Constants::Q_VALUES, Mail::Constants::SPACE, Mail::Constants::TEXT, Mail::Constants::TOKEN_UNSAFE, Mail::Constants::UNDERSCORE, Mail::Constants::WSP
Instance Method Summary collapse
- #cleaned(string) ⇒ Object
-
#initialize(string) ⇒ ContentTypeElement
constructor
A new instance of ContentTypeElement.
- #main_type ⇒ Object
- #parameters ⇒ Object
- #sub_type ⇒ Object
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
#initialize(string) ⇒ ContentTypeElement
Returns a new instance of ContentTypeElement.
7 8 9 10 11 12 |
# File 'lib/mail/elements/content_type_element.rb', line 7 def initialize( string ) content_type = Mail::Parsers::ContentTypeParser.new.parse(cleaned(string)) @main_type = content_type.main_type @sub_type = content_type.sub_type @parameters = content_type.parameters end |
Instance Method Details
#cleaned(string) ⇒ Object
26 27 28 |
# File 'lib/mail/elements/content_type_element.rb', line 26 def cleaned(string) string =~ /(.+);\s*$/ ? $1 : string end |
#main_type ⇒ Object
14 15 16 |
# File 'lib/mail/elements/content_type_element.rb', line 14 def main_type @main_type end |
#parameters ⇒ Object
22 23 24 |
# File 'lib/mail/elements/content_type_element.rb', line 22 def parameters @parameters end |
#sub_type ⇒ Object
18 19 20 |
# File 'lib/mail/elements/content_type_element.rb', line 18 def sub_type @sub_type end |