Re: [Rails] FasterCSV isn't rendering columns

2010-11-27 Thread Colin Law
On 27 November 2010 14:10, Greg Ma wrote: > Hi, > > I have a problme with fasterCSV, it isn't rendering columns... I don't > understand why. All my columns are inside the first column the csv file > :( > > csv_string = FasterCSV.generate(:col_sep => "\t") do |csv| >      # header row >      csv <<

[Rails] FasterCSV isn't rendering columns

2010-11-27 Thread Greg Ma
Hi, I have a problme with fasterCSV, it isn't rendering columns... I don't understand why. All my columns are inside the first column the csv file :( csv_string = FasterCSV.generate(:col_sep => "\t") do |csv| # header row csv << ["id", "Email", "Ville", "Type", "Fréquence"] # da