Module: RakeDependencies::PlatformNames

Defined in:
lib/rake_dependencies/platform_names.rb

Overview

rubocop:disable Naming/VariableNumber

Constant Summary collapse

CPU =
{
  x86_64: 'amd64',
  x64: 'amd64',
  x86: '386',
  arm: 'arm',
  arm64: 'arm64'
}.freeze
OS =
{
  darwin: 'darwin',
  linux: 'linux',
  mswin32: 'windows',
  mswin64: 'windows'
}.freeze