Skip to content

Instantly share code, notes, and snippets.

@jpterry
Created October 8, 2014 22:20
Show Gist options
  • Save jpterry/d629a66e46e923e26158 to your computer and use it in GitHub Desktop.
Save jpterry/d629a66e46e923e26158 to your computer and use it in GitHub Desktop.
def write_csv(excelx_filename, outfile_name)
CSV.open(outfile_name, "wb") do |csv|
Roo::Excelx.new(excelx_filename, minimal_load: true).each_row_streaming do |row_cells|
csv << row_cells.map(&:value)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment