class Multipart::Post::Parts::EpiloguePart
Represents the epilogue or closing boundary.
Public Class Methods
new(boundary)
click to toggle source
# File lib/multipart/post/parts.rb, line 141 def initialize(boundary) @part = String.new("--#{boundary}--\r\n") @io = StringIO.new(@part) end