Class: Mail::ContentLocationElement

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

Overview

:nodoc:

Instance Method Summary collapse

Methods included from Utilities

included

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