HEX
Server: Apache
System: Linux vps-cdc32557.vps.ovh.ca 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
User: hanode (1017)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //usr/share/ri/3.0.0/system/Tempfile/new-c.ri
U:RDoc::AnyMethod[iI"new:ETI"Tempfile::new;TT:publico:RDoc::Markup::Document:@parts[o:RDoc::Markup::Paragraph;	[I"ICreates a temporary file with permissions 0600 (= only readable and ;TI"8writable by the owner) and opens it with mode "w+".;To:RDoc::Markup::BlankLineo;
;	[I"MIt is recommended to use Tempfile.create { ... } instead when possible, ;TI"Nbecause that method avoids the cost of delegation and does not rely on a ;TI"Afinalizer to close and unlink the file, which is unreliable.;T@o;
;	[I"CThe +basename+ parameter is used to determine the name of the ;TI"Ctemporary file. You can either pass a String or an Array with ;TI"F2 String elements. In the former form, the temporary file's base ;TI"@name will begin with the given string. In the latter form, ;TI"Fthe temporary file's base name will begin with the array's first ;TI";element, and end with the second element. For example:;T@o:RDoc::Markup::Verbatim;	[I""file = Tempfile.new('hello')
;TI"Gfile.path  # => something like: "/tmp/hello2843-8392-92849382--0"
;TI"
;TI"C# Use the Array form to enforce an extension in the filename:
;TI",file = Tempfile.new(['hello', '.jpg'])
;TI"Kfile.path  # => something like: "/tmp/hello2843-8392-92849382--0.jpg"
;T:@format0o;
;	[I"EThe temporary file will be placed in the directory as specified ;TI"Aby the +tmpdir+ parameter. By default, this is +Dir.tmpdir+.;T@o;;	[I"2file = Tempfile.new('hello', '/home/aisaka')
;TI"Ofile.path  # => something like: "/home/aisaka/hello2843-8392-92849382--0"
;T;
0o;
;	[	I"IYou can also pass an options hash. Under the hood, Tempfile creates ;TI"Kthe temporary file using +File.open+. These options will be passed to ;TI"@+File.open+. This is mostly useful for specifying encoding ;TI"options, e.g.:;T@o;;	[	I"CTempfile.new('hello', '/home/aisaka', encoding: 'ascii-8bit')
;TI"
;TI"1# You can also omit the 'tmpdir' parameter:
;TI"3Tempfile.new('hello', encoding: 'ascii-8bit')
;T;
0o;
;	[I"INote: +mode+ keyword argument, as accepted by Tempfile, can only be ;TI"Bnumeric, combination of the modes defined in File::Constants.;T@S:RDoc::Markup::Heading:
leveli:	textI"Exceptions;T@o;
;	[I"DIf Tempfile.new cannot find a unique filename within a limited ;TI"6number of tries, then it will raise an exception.;T:
@fileI"lib/tempfile.rb;T:0@omit_headings_from_table_of_contents_below000[I"2(basename="", tmpdir=nil, mode: 0, **options);T@CTI"
Tempfile;TcRDoc::NormalClass00