module FFI::Platform

Constants

ARCH
CONF_DIR
IS_BSD
IS_FREEBSD
IS_LINUX
IS_MAC
IS_OPENBSD
IS_WINDOWS
LIBC
LIBPREFIX
LIBSUFFIX
NAME
OS

Public Class Methods

bsd?() click to toggle source
# File lib/ffi/platform.rb, line 94
def self.bsd?
  IS_BSD
end
mac?() click to toggle source
# File lib/ffi/platform.rb, line 102
def self.mac?
  IS_MAC
end
unix?() click to toggle source
# File lib/ffi/platform.rb, line 106
def self.unix?
  !IS_WINDOWS
end
windows?() click to toggle source
# File lib/ffi/platform.rb, line 98
def self.windows?
  IS_WINDOWS
end