Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save PavelPenkov/5b7ec864720da6cd7bc54d1a0b9ddf4d to your computer and use it in GitHub Desktop.
Save PavelPenkov/5b7ec864720da6cd7bc54d1a0b9ddf4d to your computer and use it in GitHub Desktop.
irb(main):001:0> s = StringIO.new
=> #<StringIO:0x00005558cba587e0>
irb(main):002:0> s.write('message')
=> 7
irb(main):003:0> s.rewind
=> 0
irb(main):004:0> s.read
=> "message"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment