Method: Datadog::Core::Vendor::Multipart::Post::Parts::EpiloguePart#initialize

Defined in:
lib/datadog/core/vendor/multipart-post/multipart/post/parts.rb

#initialize(boundary) ⇒ EpiloguePart

Returns a new instance of EpiloguePart.



127
128
129
130
# File 'lib/datadog/core/vendor/multipart-post/multipart/post/parts.rb', line 127

def initialize(boundary)
  @part = "--#{boundary}--\r\n"
  @io = StringIO.new(@part)
end