Skip to content

Instantly share code, notes, and snippets.

@spidergears
Last active August 29, 2015 14:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save spidergears/a06f18ddc843627c1cd1 to your computer and use it in GitHub Desktop.
Save spidergears/a06f18ddc843627c1cd1 to your computer and use it in GitHub Desktop.
Ruby Tempfile class
> tempfile = Tempfile.new(["temp", "text"])
=> #<Tempfile:/tmp/temp20141109-10110-2pjq04text>
> tempfile.write("sample tempfile.")
=> 16
> tempfile.rewind
=> 0
> tempfile.read
=> "sample tempfile."
> tempfile.close
=> nil
> tempfile.unlink
=> #<Tempfile:>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment