Sha256: 8c48654c3731a52dfbb35a8dfbf7938db4d8f33946fa5162b898651230ae9110
Contents?: true
Size: 1.22 KB
Versions: 40
Compression:
Stored size: 1.22 KB
Contents
module Bosh::Stemcell module OperatingSystem def self.for(operating_system_name, operating_system_version = nil) case operating_system_name when 'centos' then Centos.new(operating_system_version) when 'rhel' then Rhel.new(operating_system_version) when 'ubuntu' then Ubuntu.new(operating_system_version) when 'photon' then Photon.new(operating_system_version) else raise ArgumentError.new("invalid operating system: #{operating_system_name}") end end class Base attr_reader :name, :version def initialize(options = {}) @name = options.fetch(:name) @version = options.fetch(:version) end def ==(other) name == other.name end end class Rhel < Base def initialize(version) super(name: 'rhel', version: version) end end class Centos < Base def initialize(version) super(name: 'centos', version: version) end end class Ubuntu < Base def initialize(version) super(name: 'ubuntu', version: version) end end class Photon < Base def initialize(version) super(name: 'photon', version: version) end end end end
Version data entries
40 entries across 40 versions & 1 rubygems