Submit
Path:
~
/
/
lib
/
ruby
/
vendor_ruby
/
childprocess
/
windows
/
File Content:
io.rb
module ChildProcess module Windows class IO < AbstractIO private def check_type(io) return if has_fileno?(io) return if has_to_io?(io) raise ArgumentError, "#{io.inspect}:#{io.class} must have :fileno or :to_io" end def has_fileno?(io) io.respond_to?(:fileno) && io.fileno end def has_to_io?(io) io.respond_to?(:to_io) && io.to_io.kind_of?(::IO) end end # IO end # Windows end # ChildProcess
Submit
FILE
FOLDER
Name
Size
Permission
Action
handle.rb
2212 bytes
0644
io.rb
493 bytes
0644
lib.rb
11400 bytes
0644
process.rb
2836 bytes
0644
process_builder.rb
4721 bytes
0644
structs.rb
5019 bytes
0644
N4ST4R_ID | Naxtarrr