Flowdock
method

close_on_exec?

Importance_1
Ruby latest stable (v2_5_5) - 0 notes - Class: IO
close_on_exec?() public

Returns true if ios will be closed on exec.

f = open("/dev/null")
f.close_on_exec?                 #=> false
f.close_on_exec = true
f.close_on_exec?                 #=> true
f.close_on_exec = false
f.close_on_exec?                 #=> false
Show source
Register or log in to add new notes.