Class: Mail::ContentLocationElement

Inherits:
Object
  • Object
show all
Includes:
Utilities
Defined in:
lib/mail/elements/content_location_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::FWS, Patterns::HEADER_LINE, 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_unescape

Constructor Details

#initialize(string) ⇒ ContentLocationElement

Returns a new instance of ContentLocationElement.



7
8
9
10
11
12
13
14
# File 'lib/mail/elements/content_location_element.rb', line 7

def initialize( string )
  parser = Mail::ContentLocationParser.new
  if tree = parser.parse(string)
    @location = tree.location.text_value
  else
    raise Mail::Field::ParseError, "ContentLocationElement can not parse |#{string}|\nReason was: #{parser.failure_reason}\n"
  end
end

Instance Method Details

#locationObject



16
17
18
# File 'lib/mail/elements/content_location_element.rb', line 16

def location
  @location
end

#to_s(*args) ⇒ Object



20
21
22
# File 'lib/mail/elements/content_location_element.rb', line 20

def to_s(*args)
  location.to_s
end