Class: PEBuild::Cap::DetectInstaller::Windows Abstract

Inherits:
Base
  • Object
show all
Defined in:
lib/pe_build/cap/detect_installer/windows.rb

Overview

This class is abstract.

Provide an abstract base class for detecting the installer name on POSIX systems.

Instance Method Summary collapse

Methods inherited from Base

detect_installer, #initialize

Constructor Details

This class inherits a constructor from PEBuild::Cap::DetectInstaller::Base

Instance Method Details

#detectObject



8
9
10
11
# File 'lib/pe_build/cap/detect_installer/windows.rb', line 8

def detect
  # Yes, it really is this simple. For Windows anyway.
  "puppet-enterprise-#{@version}.msi"
end