Class: MIME::MultipartMedia::Mixed

Inherits:
MIME::MultipartMedia show all
Defined in:
lib/mime/composite_media_type.rb

Overview

The Mixed subtype aggregates contextually independent entities.

Instance Attribute Summary

Attributes inherited from MIME::MediaType

#headers

Attributes included from Headers::MIME

#content_description, #content_disposition, #content_id, #content_transfer_encoding, #content_type, #mime_version

Instance Method Summary collapse

Methods inherited from MIME::MultipartMedia

#body, #boundary

Methods inherited from CompositeMediaType

#add_entity, #attach_entity, #inline_entity

Methods inherited from MIME::MediaType

#to_s

Constructor Details

#initializeMixed

Returns a MultipartMedia::Mixed object with a content type of multipart/mixed.



140
141
142
# File 'lib/mime/composite_media_type.rb', line 140

def initialize
  super("multipart/mixed; boundary=#{boundary}")
end