Flowdock
method

create

Importance_2
v2_5_5 - Show latest stable - 0 notes - Class: Tempfile
create(basename="", tmpdir=nil, mode: 0, **options) public

Creates a temporary file as usual File object (not Tempfile). It doesn’t use finalizer and delegation.

If no block is given, this is similar to Tempfile.new except creating File instead of Tempfile. The created file is not removed automatically. You should use File.unlink to remove it.

If a block is given, then a File object will be constructed, and the block is invoked with the object as the argument. The File object will be automatically closed and the temporary file is removed after the block terminates. The call returns the value of the block.

In any case, all arguments (basename, tmpdir, mode, and **options) will be treated as Tempfile.new.

Tempfile.create('foo', '/home/temp') do |f|
   ... do something with f ...
end
Show source
Register or log in to add new notes.