I am really new to Ruby development. I am trying to create a json file with strings. My json file is as below. Can you help me?
{ "App":{ "properties":{"color":"red"}, "screens":[ {"id":"page1", "properties":{"color":"red"}, "elements":[ {"type":"txtbox", "properties":{"color":"red"}}, {"type":"button", "properties":{"color":"red"}} ] }, {"id":"page2", "properties":{"color":"red"}, "elements":[ {"type":"txtbox", "properties":{"color":"red"}}, {"type":"button", "properties":{"color":"red"}} ] } ] } }
source share