Sha256: a3fea9dfb15d77f4182878602bed2432543ad1d00afcb56d21b59443e9fe316f

Contents?: true

Size: 334 Bytes

Versions: 3

Compression:

Stored size: 334 Bytes

Contents

# frozen_string_literal: true

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rake_dependencies-3.6.0.pre.4 lib/rake_dependencies/platform_names.rb
rake_dependencies-3.6.0.pre.3 lib/rake_dependencies/platform_names.rb
rake_dependencies-3.6.0.pre.2 lib/rake_dependencies/platform_names.rb