class Datadog::Vendor::Multipart::Post::Parts::EpiloguePart

Represents the epilogue or closing boundary.

Public Class Methods

new(boundary) click to toggle source
# File lib/ddtrace/vendor/multipart-post/multipart/post/parts.rb, line 127
def initialize(boundary)
  @part = "--#{boundary}--\r\n"
  @io = StringIO.new(@part)
end