Skip to content

Instantly share code, notes, and snippets.

@qpark99
Last active December 31, 2015 15:19
Show Gist options
  • Save qpark99/8005920 to your computer and use it in GitHub Desktop.
Save qpark99/8005920 to your computer and use it in GitHub Desktop.
csv to json convert
require 'csv'
require 'json'
file_name = ARGV[0]
unless file_name.nil?
File.open(file_name) {|f| puts CSV.parse(f.read).to_json }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment