Is somebody able to suggest me a way to do this ? ( all is in the subject :D )
what I want is using a "path" and tranform it as a suit of sub key,
e.g. : I have that params: path = "earth/animal/human/men/young/" value = "martin" and I want :
`Global_hash = { earth => { human => { men => { young => "martin"
}
}
}
}`
path = "earth/animal/human/men/old/" value = "John" and I want :
Global_hash = { earth => { human => { men => { young => "martin",
old => "John"
}
}
}
}
add an other
path = "earth/animal/human/women/old/" value = "Eve" and I want :
`Global_hash = { earth => { human => { men => { young => "martin",
old => "John"
},
women => { old => "Eve"
}
}
}
}
`
The final goal is a way to produce yml file with 2 parameters : the path and the value
the exemple produces : `
earth:
animal:
human:
men:
young: "martin"
old: "John"
women:
old: "Eve"
` it will allow us to have a yml file with all object sort by sections thanks to their path.
Thanks per advance