Ruby Read JSON -Datei
require "json"
json_from_file = File.read("myfile.json")
hash = JSON.parse(json_from_file)
Important Impala
require "json"
json_from_file = File.read("myfile.json")
hash = JSON.parse(json_from_file)