Sha256: f8750b7289e470b08f704aa55da846b821f099a079de86a940f62a5323af40ce

Contents?: true

Size: 350 Bytes

Versions: 2

Compression:

Stored size: 350 Bytes

Contents

# frozen_string_literal: true

module Sys
  class Uname
    # The version of the sys-uname gem.
    VERSION = '1.3.1'
  end

  class Platform
    # The version of the sys-uname gem.
    VERSION = Uname::VERSION
  end
end

if File::ALT_SEPARATOR
  require_relative 'windows/uname'
else
  require_relative 'unix/uname'
end

require_relative 'platform'

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
cloudsmith-api-2.0.16 vendor/bundle/ruby/2.6.0/gems/sys-uname-1.3.1/lib/sys/uname.rb
sys-uname-1.3.1 lib/sys/uname.rb