Module: LegacyFacter::Util::Parser::KeyValuePairOutputFormat

Defined in:
lib/custom_facts/util/parser.rb

Class Method Summary collapse

Class Method Details

.parse(output) ⇒ Object



82
83
84
85
86
87
88
89
90
91
92
93
# File 'lib/custom_facts/util/parser.rb', line 82

def self.parse(output)
  return {} if output.nil?

  result = {}
  re = /^(.+?)=(.+)$/
  output.each_line do |line|
    if (match_data = re.match(line.chomp))
      result[match_data[1]] = match_data[2]
    end
  end
  result
end