Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need export data as CSV in rails appl. I found this plugin: https://github.com/crafterm/comma. Do you know about some better solution?

share|improve this question
3  
Looks pretty comprehensive and handles data relations, I'd say stick with comma – Slomojo Nov 29 '10 at 8:44
1  
Comma does not work for me in rails3. I found github.com/econsultancy/csv_builder and it works well. – boblin Nov 29 '10 at 10:48
1  
Can confirm that comma is not working in Rails 3. – Fletch Dec 15 '10 at 14:44

closed as not constructive by Jeremiah Willcock, casperOne Apr 20 '12 at 12:35

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

If using Ruby 1.9.x, then use CSV rather than FasterCSV and stick with the default delimiters.

Controller:

respond_to do |format|
  ...           
  format.csv { render :layout => false }
end

show.csv.erb:

<%= this_is_your_view_helper_method.html_safe %>

controller_helper.rb:

require 'csv'

def this_is_your_view_helper_method
  CSV.generate do |csv| 
    Product.find(:all).each do |product|
      csv << ... add stuff here ...
    end
  end
end
share|improve this answer
10  
FasterCSV actually became the standard CSV library in Ruby 1.9, so no need to download it, it's already there if you're on Ruby 1.9. – Fletch Dec 15 '10 at 14:48
1  
Works great with rails 3.x too. – David Radcliffe May 9 '11 at 14:04
1  
Thanks @Fletch for the note! This answer has been downvoted twice and I have no idea why. If you downvote, please let me know why you're doing so. – hade Mar 5 '12 at 7:29

Checkout this Stack Overflow answer for using CSV in Ruby 1.9.x (which, as Fletch noted, includes FasterCSV but with slightly different syntax).

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.