class Net::SSH::Buffer

def initialize(content = String.new)

is initialized to the beginning of the buffer.
Creates a new buffer, initialized to the given content. The position
def initialize(content = String.new)
  @content = content.to_s
  @position = 0
end