Skip to content

Instantly share code, notes, and snippets.

@thejefflarson
Created November 2, 2011 21:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save thejefflarson/1334996 to your computer and use it in GitHub Desktop.
Save thejefflarson/1334996 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'rubygems'
require 'json'
require 'fastercsv'
if File.exists? ARGV[0]
puts FasterCSV.parse(open(ARGV[0]).read, :headers=>true).map(&:to_hash).to_json
else
puts "usage: jsonize <path/to/csv>"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment