@@ -1977,8 +1977,8 @@ module Kernel : BasicObject
19771977 #
19781978 # Raises an exception if the new process could not execute.
19791979 #
1980- def self?.exec : (String command, *String args, ?unsetenv_others: bool , ?pgroup: true | Integer, ?umask: Integer, ?in : redirect_fd, ?out : redirect_fd, ?err: redirect_fd, ?close_others: boolish , ?chdir: String) -> bot
1981- | (Hash[string, string?] env, String command, *String args, ?unsetenv_others: bool , ?pgroup: true | Integer, ?umask: Integer, ?in : redirect_fd, ?out : redirect_fd, ?err: redirect_fd, ?close_others: boolish , ?chdir: String) -> bot
1980+ def self?.exec : (String command, *String args, ?unsetenv_others: bool , ?pgroup: true | Integer, ?umask: Integer, ?in : redirect_fd, ?out : redirect_fd, ?err: redirect_fd, ?close_others: bool , ?chdir: String) -> bot
1981+ | (Hash[string, string?] env, String command, *String args, ?unsetenv_others: bool , ?pgroup: true | Integer, ?umask: Integer, ?in : redirect_fd, ?out : redirect_fd, ?err: redirect_fd, ?close_others: bool , ?chdir: String) -> bot
19821982
19831983 type redirect_fd = Integer | :in | :out | :err | IO | String | [ String ] | [ String, string | int ] | [ String, string | int, int ] | [ :child, int ] | :close
19841984
@@ -2082,8 +2082,8 @@ module Kernel : BasicObject
20822082 #
20832083 # Raises an exception if the new process could not execute.
20842084 #
2085- def self?.spawn : (String command, *String args, ?unsetenv_others: bool , ?pgroup: true | Integer, ?umask: Integer, ?in : redirect_fd, ?out : redirect_fd, ?err: redirect_fd, ?close_others: boolish , ?chdir: String) -> Integer
2086- | (Hash[string, string?] env, String command, *String args, ?unsetenv_others: bool , ?pgroup: true | Integer, ?umask: Integer, ?in : redirect_fd, ?out : redirect_fd, ?err: redirect_fd, ?close_others: boolish , ?chdir: String) -> Integer
2085+ def self?.spawn : (String command, *String args, ?unsetenv_others: bool , ?pgroup: true | Integer, ?umask: Integer, ?in : redirect_fd, ?out : redirect_fd, ?err: redirect_fd, ?close_others: bool , ?chdir: String) -> Integer
2086+ | (Hash[string, string?] env, String command, *String args, ?unsetenv_others: bool , ?pgroup: true | Integer, ?umask: Integer, ?in : redirect_fd, ?out : redirect_fd, ?err: redirect_fd, ?close_others: bool , ?chdir: String) -> Integer
20872087
20882088 # <!--
20892089 # rdoc-file=process.c
@@ -2200,8 +2200,8 @@ module Kernel : BasicObject
22002200 #
22012201 # Raises an exception if the new process could not execute.
22022202 #
2203- def self?.system : (String command, *String args, ?unsetenv_others: bool , ?pgroup: true | Integer, ?umask: Integer, ?in : redirect_fd, ?out : redirect_fd, ?err: redirect_fd, ?close_others: boolish , ?chdir: String, ?exception: bool ) -> (NilClass | FalseClass | TrueClass)
2204- | (Hash[string, string?] env, String command, *String args, ?unsetenv_others: bool , ?pgroup: true | Integer, ?umask: Integer, ?in : redirect_fd, ?out : redirect_fd, ?err: redirect_fd, ?close_others: boolish , ?chdir: String, ?exception: bool ) -> (NilClass | FalseClass | TrueClass)
2203+ def self?.system : (String command, *String args, ?unsetenv_others: bool , ?pgroup: true | Integer, ?umask: Integer, ?in : redirect_fd, ?out : redirect_fd, ?err: redirect_fd, ?close_others: bool , ?chdir: String, ?exception: bool ) -> (NilClass | FalseClass | TrueClass)
2204+ | (Hash[string, string?] env, String command, *String args, ?unsetenv_others: bool , ?pgroup: true | Integer, ?umask: Integer, ?in : redirect_fd, ?out : redirect_fd, ?err: redirect_fd, ?close_others: bool , ?chdir: String, ?exception: bool ) -> (NilClass | FalseClass | TrueClass)
22052205
22062206 # <!--
22072207 # rdoc-file=object.c
0 commit comments