[DOC] Exclude 'Process' from RDoc's autolinking

This commit is contained in:
Nobuyoshi Nakada 2025-01-02 11:58:15 +09:00
parent e4fff86faf
commit d441d35107
No known key found for this signature in database
GPG Key ID: 3582D74E1FEE4465
Notes: git 2025-01-02 05:23:07 +00:00
3 changed files with 6 additions and 5 deletions

View File

@ -13,5 +13,6 @@ exclude:
- .gemspec - .gemspec
autolink_excluded_words: autolink_excluded_words:
- Process
- Ruby - Ruby
- Set - Set

2
io.c
View File

@ -7862,7 +7862,7 @@ static VALUE popen_finish(VALUE port, VALUE klass);
* - {Encoding options}[rdoc-ref:encodings.rdoc@Encoding+Options]. * - {Encoding options}[rdoc-ref:encodings.rdoc@Encoding+Options].
* - Options for Kernel#spawn. * - Options for Kernel#spawn.
* *
* <b>Forked \Process</b> * <b>Forked Process</b>
* *
* When argument +cmd+ is the 1-character string <tt>'-'</tt>, causes the process to fork: * When argument +cmd+ is the 1-character string <tt>'-'</tt>, causes the process to fork:
* IO.popen('-') do |pipe| * IO.popen('-') do |pipe|

View File

@ -5914,7 +5914,7 @@ rb_getpwdiruid(void)
* The Process::Sys module contains UID and GID * The Process::Sys module contains UID and GID
* functions which provide direct bindings to the system calls of the * functions which provide direct bindings to the system calls of the
* same names instead of the more-portable versions of the same * same names instead of the more-portable versions of the same
* functionality found in the Process, * functionality found in the +Process+,
* Process::UID, and Process::GID modules. * Process::UID, and Process::GID modules.
*/ */
@ -8765,7 +8765,7 @@ proc_warmup(VALUE _)
* \Module +Process+ represents a process in the underlying operating system. * \Module +Process+ represents a process in the underlying operating system.
* Its methods support management of the current process and its child processes. * Its methods support management of the current process and its child processes.
* *
* == \Process Creation * == Process Creation
* *
* Each of the following methods executes a given command in a new process or subshell, * Each of the following methods executes a given command in a new process or subshell,
* or multiple commands in new processes and/or subshells. * or multiple commands in new processes and/or subshells.
@ -9012,7 +9012,7 @@ proc_warmup(VALUE _)
* *
* 0644 * 0644
* *
* ==== \Process Groups (+:pgroup+ and +:new_pgroup+) * ==== Process Groups (+:pgroup+ and +:new_pgroup+)
* *
* By default, the new process belongs to the same * By default, the new process belongs to the same
* {process group}[https://en.wikipedia.org/wiki/Process_group] * {process group}[https://en.wikipedia.org/wiki/Process_group]
@ -9146,7 +9146,7 @@ proc_warmup(VALUE _)
* - ::waitall: Waits for all child processes to exit; * - ::waitall: Waits for all child processes to exit;
* returns their process IDs and statuses. * returns their process IDs and statuses.
* *
* === \Process Groups * === Process Groups
* *
* - ::getpgid: Returns the process group ID for a process. * - ::getpgid: Returns the process group ID for a process.
* - ::getpriority: Returns the scheduling priority * - ::getpriority: Returns the scheduling priority