# File lib/hocon.rb, line 5 def self.load(file) config = Hocon::ConfigFactory.parse_file(file) return config.root.unwrapped end
# File lib/hocon.rb, line 10 def self.parse(string) config = Hocon::ConfigFactory.parse_string(string) return config.root.unwrapped end