Top Level Namespace

Defined Under Namespace

Modules: CommPort, Rs232

Constant Summary collapse

OS =
case RbConfig::CONFIG['host_os'].downcase
when /linux/
  'linux'
when /darwin/
  'darwin'
when /freebsd/
  'freebsd'
when /openbsd/
  'openbsd'
when /sunos|solaris/
  'solaris'
when /mswin|mingw/
  'windows'
else
  RbConfig::CONFIG['host_os'].downcase
end