Sha256: 0afca466c405ae8f5de5d290ffacb15008be55e5dfd8ff597b240592983a0e87

Contents?: true

Size: 326 Bytes

Versions: 6

Compression:

Stored size: 326 Bytes

Contents

module Sys
  class Uname
    # The version of the sys-uname gem.
    VERSION = '1.2.0'.freeze
  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

6 entries across 6 versions & 2 rubygems

Version Path
cloudsmith-api-0.49.94 vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.0/lib/sys/uname.rb
cloudsmith-api-0.49.21 vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.0/lib/sys/uname.rb
cloudsmith-api-0.49.15 vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.0/lib/sys/uname.rb
cloudsmith-api-0.49.13 vendor/bundle/ruby/2.6.0/gems/sys-uname-1.2.0/lib/sys/uname.rb
cloudsmith-api-0.49.9 vendor/bundle/ruby/2.3.0/gems/sys-uname-1.2.0/lib/sys/uname.rb
sys-uname-1.2.0 lib/sys/uname.rb