Sha256: 91f2d34ec99e3fe49c631e96d4455a961d12cc83fc191f84b25291adef682343

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.1'.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.1 lib/sys/cpu.rb