Class: Parts::EpiloguePart
Overview
Represents the epilogue or closing boundary.
Instance Method Summary collapse
-
#initialize(boundary) ⇒ EpiloguePart
constructor
A new instance of EpiloguePart.
Methods included from Part
Constructor Details
#initialize(boundary) ⇒ EpiloguePart
Returns a new instance of EpiloguePart.
62 63 64 65 |
# File 'lib/parts.rb', line 62 def initialize(boundary) @part = "--#{boundary}--\r\n" @io = StringIO.new(@part) end |