I have a node that looks like this, in the xml file:
<property name="nameA" value="{ "keyA": "valueA", "keyB": "valueB" }"/>
I create the nokogiri object, search it for the value of that node, and get this:
{ "keyA": "valueA", "keyB": "valueB" }
I need to modify valueA. Do I convert this to a Ruby hash, modify it, and then convert it back? How would I do that? Thanks.
This looks like JSON.
Then: