Class: Mail::ContentLocationField

Inherits:
StructuredField show all
Defined in:
lib/mail/fields/content_location_field.rb

Constant Summary collapse

FIELD_NAME =
'content-location'
CAPITALIZED_FIELD =
'Content-Location'

Instance Method Summary collapse

Methods inherited from StructuredField

#default

Methods included from Utilities

included

Methods included from CommonField

included

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

#decodedObject



37
38
39
# File 'lib/mail/fields/content_location_field.rb', line 37

def decoded
  value
end

#elementObject



24
25
26
# File 'lib/mail/fields/content_location_field.rb', line 24

def element
  @element ||= Mail::ContentLocationElement.new(value)
end

#encodedObject

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

#locationObject



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