class Net::SSH::Buffer
def write(*data)
Writes the given data literally into the string. Does not alter the
def write(*data) data.each { |datum| @content << datum.dup.force_encoding('BINARY') } self end
def write(*data) data.each { |datum| @content << datum.dup.force_encoding('BINARY') } self end