Class: Mail::ContentLocationField
- Inherits:
-
StructuredField
- Object
- StructuredField
- Mail::ContentLocationField
- Defined in:
- lib/mail/fields/content_location_field.rb
Constant Summary collapse
- FIELD_NAME =
'content-location'
- CAPITALIZED_FIELD =
'Content-Location'
Instance Method Summary collapse
- #decoded ⇒ Object
- #element ⇒ Object
-
#encoded ⇒ Object
TODO: Fix this up.
-
#initialize(*args) ⇒ ContentLocationField
constructor
A new instance of ContentLocationField.
- #location ⇒ Object
- #parse(val = value) ⇒ Object
Methods inherited from StructuredField
Methods included from Utilities
Methods included from CommonField
Constructor Details
#initialize(*args) ⇒ ContentLocationField
Returns a new instance of ContentLocationField.
11 12 13 14 15 16 |
# File 'lib/mail/fields/content_location_field.rb', line 11 def initialize(*args) super(CAPITALIZED_FIELD, strip_field(FIELD_NAME, args.last)) self.parse self end |
Instance Method Details
#decoded ⇒ Object
37 38 39 |
# File 'lib/mail/fields/content_location_field.rb', line 37 def decoded value end |
#element ⇒ Object
24 25 26 |
# File 'lib/mail/fields/content_location_field.rb', line 24 def element @element ||= Mail::ContentLocationElement.new(value) end |
#encoded ⇒ Object
TODO: Fix this up
33 34 35 |
# File 'lib/mail/fields/content_location_field.rb', line 33 def encoded "#{CAPITALIZED_FIELD}: #{value}\r\n" end |
#location ⇒ Object
28 29 30 |
# File 'lib/mail/fields/content_location_field.rb', line 28 def location element.location end |
#parse(val = value) ⇒ Object
18 19 20 21 22 |
# File 'lib/mail/fields/content_location_field.rb', line 18 def parse(val = value) unless val.blank? @element = Mail::ContentLocationElement.new(val) end end |