Skip to content

Instantly share code, notes, and snippets.

@hundredwatt
Forked from felixrabe/csv_unparse.rb
Created May 5, 2014 13:55
Show Gist options
  • Save hundredwatt/5e1681a2751ca15eabe3 to your computer and use it in GitHub Desktop.
Save hundredwatt/5e1681a2751ca15eabe3 to your computer and use it in GitHub Desktop.
require 'csv'
# Please someone include this in the csv module proper. Thanks.
# Public domain. Author: Felix Rabe (heavily based on 1.9.3 stdlib csv docs)
class CSV
def CSV.unparse array, opts = {}
CSV.generate(opts) do |csv|
array.each { |i| csv << i }
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment