Class: Net::HTTP::Post::EpiloguePart

Inherits:
Object
  • Object
show all
Includes:
Part
Defined in:
lib/net/http/post/multipart.rb

Overview

Represents the epilogue or closing boundary.

Instance Method Summary collapse

Methods included from Part

#length, new, #to_io

Constructor Details

#initialize(boundary) ⇒ EpiloguePart

Returns a new instance of EpiloguePart.



78
79
80
81
# File 'lib/net/http/post/multipart.rb', line 78

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