hash to json rails code example

Example 1: how to json into hash ruby

response = Faraday.get('https://api.github.com/users/your_username')
r = JSON.parse(response.body, symbolize_names: true)
#OR
JSON.parse(response.body)
#'symbolize_names' turns the keys in this hash into symbols, not required
#JSON.parse is what turns the JSON object into a hash

Example 2: ruby hash to json

require 'json'
File.open("filename.json", "w") do |f|
  f.write(JSON.pretty_generate(my_hash))
end

Tags:

Ruby Example