Sha256: e98aff4da86a69050f8155f06e02e6ec544639b14af8fcdaf457ec43ee0e84b2
Contents?: true
Size: 489 Bytes
Versions: 10
Compression:
Stored size: 489 Bytes
Contents
require 'sys-uname' class VolMgrPlatformSupport def initialize(cfgFile, ost) $log.debug "Initializing VolMgrPlatformSupport" if $log @cfgFile = cfgFile @ost = ost if Sys::Platform::OS == :windows require "VolumeManager/VolMgrPlatformSupportWin" extend VolMgrPlatformSupportWin else require "VolumeManager/VolMgrPlatformSupportLinux" extend VolMgrPlatformSupportLinux end init end # def initialize end # class VolMgrPlatformSupport
Version data entries
10 entries across 10 versions & 1 rubygems