class Vcard::Attachment::Inline

Extends a String to support some of the same methods as Uri.

Attributes

format[R]

The format of the inline data. See Attachment.

Public Instance Methods

to_io() click to toggle source

Return an IO object for the inline data. See stringio for more information.

# File lib/vcard/attachment.rb, line 54
def to_io
  StringIO.new(self)
end