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 142
def initialize(boundary)
  @part = String.new("--#{boundary}--\r\n")
  @io = StringIO.new(@part)
end