Spent a good 5 minutes trying to dig up a small JSON to CSV ruby script on google but couldn't find anything! So i wrote my own small script in Ruby. Hope this saves someone 5 minutes! FORMAT [{"first":"Richard", "last":"Ramsden"}, {"first":"Steven", "last":"Ramsden"}] JSON to CSV require 'json' raise Exception, 'you must provide a json file' unless ARGV[0] json = JSON.parse(File.open(ARGV[0]).rea