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.



110
111
112
113
114
# File 'lib/inspec/resources/parse_config.rb', line 110

def initialize(path, opts = nil)
  @path = path
  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

#resource_idObject



116
117
118
# File 'lib/inspec/resources/parse_config.rb', line 116

def resource_id
  @path || "parse_config_file"
end

#to_sObject



120
121
122
# File 'lib/inspec/resources/parse_config.rb', line 120

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