Specialized version of StreamHandle for operations on Strings.
# File lib/taskjuggler/TextParser/Scanner.rb, line 191 def initialize(buffer, log, textScanner) super(log, textScanner) begin @stream = StringIO.new(buffer.forceUTF8Encoding) rescue error('bufferEncoding', $!.message) end #@log.msg { "Parsing buffer #{buffer[0, 20]} ..." } end