ruby hash to array of hashes code example
Example 1: ruby map hash
hash = { bacon: "protein", apple: "fruit" }
hash.map { |k,v| [k, v.to_sym] }.to_h
# {:bacon=>:protein, :apple=>:fruit}
Example 2: how to access hash value ruby
my_hash["key"] #=> "value"