Skip to content

Instantly share code, notes, and snippets.

@nikita8
Created November 13, 2018 05:15
Show Gist options
  • Save nikita8/e463e20b041a374af86ef2fadb872a09 to your computer and use it in GitHub Desktop.
Save nikita8/e463e20b041a374af86ef2fadb872a09 to your computer and use it in GitHub Desktop.
JSON encoding in Ruby
#Ruby
hash = {apple: 5, lettuce: 7}
#encoding hash to json
json_data = hash.to_json
puts json_data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment