Class: Inspec::Resources::HostProvider

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

Direct Known Subclasses

UnixHostProvider, WindowsHostProvider

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(inspec) ⇒ HostProvider

Returns a new instance of HostProvider.



141
142
143
# File 'lib/inspec/resources/host.rb', line 141

def initialize(inspec)
  @inspec = inspec
end

Instance Attribute Details

#inspecObject (readonly)

Returns the value of attribute inspec.



140
141
142
# File 'lib/inspec/resources/host.rb', line 140

def inspec
  @inspec
end

Instance Method Details

#missing_requirements(_protocol) ⇒ Object



145
146
147
148
149
# File 'lib/inspec/resources/host.rb', line 145

def missing_requirements(_protocol)
  # each provider can return an array of missing requirements that can
  # be enumerated in a skip_resource message
  []
end