Created
January 18, 2016 06:17
-
-
Save infinityrobot/50a8a19ed416664e673e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# | |
# Originally written by http://redartisan.com/tags/csv | |
# Added and minor changes by Gavin Laking | |
# Rewritten by Andrew Bennett for Ruby 1.9 | |
# | |
# Usage: ruby csv_to_fixture.rb file.csv [--json] | |
# | |
# "id","name","mime_type","extensions","icon_url" | |
# "1","unknown","unknown/unknown","||","/images/icon/file_unknown.gif" | |
# "2","image/tiff","image/tiff","|tiff|tif|","/images/icon/blank.png" | |
# | |
# if you want to remove the id: "number" line from the resulting YAML file | |
# do a find and replace for: ^( id: \"\d*\"\n) in Textmate | |
require 'csv' | |
require 'json' | |
require 'yaml' | |
input = ARGV.shift | |
is_file = (input.nil? ? false : File.exist?(input)) | |
file = is_file ? input : STDIN | |
doc = is_file ? CSV.read(file) : CSV.parse(file.read) | |
fields = doc.shift | |
records = {} | |
doc.each_with_index do |row, i| | |
record = {} | |
fields.each_with_index do |field, j| | |
record[field] = row[j] | |
end | |
records["record_#{i}"] = record | |
end | |
flag = ARGV.shift unless input.nil? | |
flag ||= input || '--yaml' | |
case flag | |
when '--json' then | |
puts records.to_json | |
else | |
puts records.to_yaml | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment