class MIME::Media
a mime object has a header(with content-type etc) and a content(aka body)
Attributes
content[RW]
ct[RW]
hd[RW]
level[RW]
response[R]
Public Class Methods
new()
click to toggle source
# File lib/safrano/multipart.rb, line 179 def initialize @state = :h @hd = {} @ct = nil @parser = Parser.new(self) end