Method: Envkey::Platform.platform_part

Defined in:
lib/envkey/platform.rb

.platform_partObject



30
31
32
33
34
35
36
37
# File 'lib/envkey/platform.rb', line 30

def self.platform_part
  case OS
    when "darwin", "linux", "windows", "freebsd"
      OS
    else
      "linux"
    end
end