I have a problem with ruby and json. I have a json-file with information scraped from the internet. For the following problem I'll use a hardcoded file, which has the following syntax:
[{
"day": "20120827_234558",
"entries": [
{
"rank": "3",
"club": "SuS Schalke 1896 e.V.",
"votes": "126"
},
{
"rank": "4",
"club": "TuS Hamborn-Neumühl 07 e.V.",
"votes": "120"
}
]
},{
"day": "20120827_234700",
"entries": [
{
"rank": "1",
"club": "TLV Germania 1901 Essen-Überruhr",
"votes": "210"
},
{
"rank": "2",
"club": "Rumelner TV",
"votes": "141"
}
]
}]
I wrote then a ruby script which loads the json from the file and puts it into a hash, fetches some information from the internet (as well hard coded in this example), adds these new information to the hash, converts the hash to json and stores it in the file again.
require 'rubygems'
require 'open-uri'
require 'json'
fname = 'ranking.json'
json = JSON.load(File.open(fname))
json.each do |ranking|
puts 'entry:'
puts ranking['day']
end
puts "\n";
new_data = Array.new
new_data = { "day" => "20120828_234558", "entries" => "sgankhask" }
json << new_data.to_json
json.each do |ranking|
puts 'entry:'
puts ranking['day']
end
So it's all about simply appending data in json format to an already existing json.
But if I execute this script, I get the following output:
entry:
20120827_234558
entry:
20120827_234700
entry:
20120827_234558
entry:
20120827_234700
entry:
day
I'm confused about the last row. I assumed the last row to be entry: 20120828_234558.
It seems, that Ruby takes the key ('day') of the hash instead of the value ('20120828_234558')?
What is wrong in my script? Any help is appreciated.