class OpenConfig::JSON

Private Instance Methods

parse_file(file_content) click to toggle source
# File lib/open_config/files/json.rb, line 9
def parse_file(file_content)
  ::JSON.parse(file_content, object_class: OpenStruct)
end