class Fission::VMConfiguration

def parse_line_data(line)

characters from the beginning or end of the provided line.
second item will be the right side. This will also strip any whitespace
Returns an Array. The first item will be the left side of the '=' and the

@vm_config.parse_line_data('foo = "bar"')

Examples:

into an Array.
Internal: Splits and formats a single line from a VM configuration file
def parse_line_data(line)
  line.strip.gsub('"', '').split ' = '
end