I have a big problem with the expected RuntimeError: "can't add a new key into hash during iteration"
In my case a I have a YAML file: test.yaml - in which I have some keys already added.
test.yaml
key1:
key2:
key3:
I am getting the contents of the file in a variable:
file_hash = YAML.load_file("testm.yaml")
Then I need to loop through this hash and add other keys to them:
file_hash.each do |key|
file_hash[key] = 'key_1'
file_hash[key] = 'key_2'
end
File.open('test.yaml', 'w') { |f| YAML.dump(file_hash, f) }
The main issue is that I am unable to write into a hash while in a loop. I don't understand why this is expected, when you have the power to control the loop block. Is there another way in which I can accomplish what I showed above?
Note: I am using RUBY 1.9.3 p547