Newer
Older
---
layout: post
title: "Parsing JSON with Ruby"
date: 2013-12-23 00:18:23
categories: ruby
short_description: This post will cover all the process of parsing JSON with Ruby.
image_preview: https://avatars2.githubusercontent.com/u/4660275?v=3&s=460
---
Parsing JSON with Ruby is actually extremely easy. All you have to do is have the json gem installed (`gem install json`) and call the `JSON.parse` method on the JSON data to convert it to ruby hashes. If you look at this small program here, you can see how I have implemented parsing JSON in Ruby.