Class: Inspec::Resources::PConfigFile

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

Instance Attribute Summary

Attributes inherited from PConfig

#content

Instance Method Summary collapse

Methods inherited from PConfig

#method_missing, #params

Methods included from FileReader

#read_file_content

Constructor Details

#initialize(path, opts = nil) ⇒ PConfigFile

Returns a new instance of PConfigFile.



103
104
105
106
# File 'lib/inspec/resources/parse_config.rb', line 103

def initialize(path, opts = nil)
  super(nil, opts)
  parse_file(path)
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Inspec::Resources::PConfig

Instance Method Details

#to_sObject



108
109
110
# File 'lib/inspec/resources/parse_config.rb', line 108

def to_s
  "Parse Config File #{@conf_path}"
end