Class: Mail::ContentLocationElement
- Inherits:
-
Object
- Object
- Mail::ContentLocationElement
- Includes:
- Utilities
- Defined in:
- lib/mail/elements/content_location_element.rb
Overview
:nodoc:
Instance Method Summary collapse
-
#initialize(string) ⇒ ContentLocationElement
constructor
A new instance of ContentLocationElement.
- #location ⇒ Object
- #to_s(*args) ⇒ Object
Methods included from Utilities
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
#location ⇒ Object
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 |