Method: Fileconv::CSV#post_convert_file
- Defined in:
- lib/fileconv/csv.rb
#post_convert_file(rows, acc) ⇒ Object
30 31 32 33 34 35 36 37 |
# File 'lib/fileconv/csv.rb', line 30 def post_convert_file(rows, acc) return unless rows ::CSV.generate("", @opts[:write_csv_opts]) do |csv| rows.each do |row| csv << row end end end |