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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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.
|
If using Ruby 1.9.x, then use CSV rather than FasterCSV and stick with the default delimiters. Controller:
show.csv.erb:
controller_helper.rb:
|
|||||||||||||
|
|
Checkout this Stack Overflow answer for using CSV in Ruby 1.9.x (which, as Fletch noted, includes FasterCSV but with slightly different syntax). |
|||
|
|