class Inspec::Resources::IniConfig

def parse(content)

override file load and parse hash with simple config
def parse(content)
  SimpleConfig.new(content).params
end

def resource_base_name

based on whether a file path, content, or command was supplied.
used by JsonConfig to build up a full to_s method
def resource_base_name
  "INI"
end