class Ascii85::DummyWrapper
Wraps the input in ‘<~’ and ‘~>’ delimiters and passes it through unmodified to the underlying IO object otherwise. You do not need to use this directly.
@private
Public Class Methods
Source
# File lib/ascii85.rb, line 375 def initialize(out) @out = out @out.write(START_MARKER) end
Public Instance Methods
Source
# File lib/ascii85.rb, line 384 def finish @out.write(ENDING_MARKER) @out.flush @out end