Sha256: 93bd29df5bfad6d19f0db3a4b52e82f67735de4638dabc9ccc269afaf1db4ca4
Contents?: true
Size: 443 Bytes
Versions: 1
Compression:
Stored size: 443 Bytes
Contents
# This is just a stub file that requires the appropriate version # depending on which platform you're on. require 'rbconfig' module Sys class CPU # The version of the sys-cpu gem. VERSION = '1.0.0'.freeze end end case RbConfig::CONFIG['host_os'] when /linux/i require_relative('linux/sys/cpu') when /windows|mswin|mingw|cygwin|dos/i require_relative('windows/sys/cpu') else require_relative('unix/sys/cpu') end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sys-cpu-1.0.0 | lib/sys/cpu.rb |