Sha256: 76db1091d6c37e9bc1873c45f401dcefc99514db89564a5d676315cdbe65f610
Contents?: true
Size: 493 Bytes
Versions: 135
Compression:
Stored size: 493 Bytes
Contents
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
Version data entries
135 entries across 119 versions & 19 rubygems