Class: Mail::ContentTypeElement

Inherits:
Object
  • Object
show all
Includes:
Utilities
Defined in:
lib/mail/elements/content_type_element.rb

Overview

:nodoc:

Constant Summary

Constants included from Patterns

Patterns::ATOM_UNSAFE, Patterns::CONTROL_CHAR, Patterns::CRLF, Patterns::FIELD_BODY, Patterns::FIELD_LINE, Patterns::FIELD_NAME, Patterns::FIELD_PREFIX, Patterns::FIELD_SPLIT, Patterns::FWS, Patterns::HEADER_LINE, Patterns::HEADER_SPLIT, Patterns::PHRASE_UNSAFE, Patterns::QP_SAFE, Patterns::QP_UNSAFE, Patterns::TEXT, Patterns::TOKEN_UNSAFE, Patterns::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

#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_typeObject



14
15
16
# File 'lib/mail/elements/content_type_element.rb', line 14

def main_type
  @main_type
end

#parametersObject



22
23
24
# File 'lib/mail/elements/content_type_element.rb', line 22

def parameters
  @parameters
end

#sub_typeObject



18
19
20
# File 'lib/mail/elements/content_type_element.rb', line 18

def sub_type
  @sub_type
end