Class: Inspec::Resources::PkgManagement

Inherits:
Object
  • Object
show all
Defined in:
lib/resources/package.rb

Direct Known Subclasses

AlpinePkg, BffPkg, Brew, Deb, HpuxPkg, Pacman, Rpm, SolarisPkg, WindowsPkg

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(inspec) ⇒ PkgManagement

Returns a new instance of PkgManagement.



96
97
98
# File 'lib/resources/package.rb', line 96

def initialize(inspec)
  @inspec = inspec
end

Instance Attribute Details

#inspecObject (readonly)

Returns the value of attribute inspec.



95
96
97
# File 'lib/resources/package.rb', line 95

def inspec
  @inspec
end

Instance Method Details

#missing_requirementsObject



100
101
102
103
104
# File 'lib/resources/package.rb', line 100

def missing_requirements
  # Each provider can provide an Array of missing requirements that will be
  # combined into a `ResourceSkipped` exception message.
  []
end