Class: Parts::EpiloguePart
- Includes:
 - Part
 
- Defined in:
 - lib/puppet/feature/parts.rb
 
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.
      91 92 93 94  | 
    
      # File 'lib/puppet/feature/parts.rb', line 91 def initialize(boundary) @part = "--#{boundary}--\r\n\r\n" @io = StringIO.new(@part) end  |