Module: File::Constants

Defined in:
lib/backports/1.9.3/file/null.rb,
lib/backports/1.9.1/file/binary.rb

Constant Summary collapse

NULL =
case platform
when /mswin|mingw/i
  'NUL'
when /amiga/i
  'NIL:'
when /openvms/i
  'NL:'
else
  '/dev/null'
end
BINARY =

In Ruby 1.8, it is defined only on Windows

0