class IESD::APP

OS X Installer App

Public Class Methods

new(url) click to toggle source

Initialize a new installer APP.

Returns an installer APP if the type of the installer is detected, otherwise nil.

# File lib/iesd/InstallESD.rb, line 17
def self.new url
  IESD::APP::InstallOSX.validate(url) ? IESD::APP::InstallOSX.new(url) : nil
end