| Message: 74008 |
 |
BY: James Gray (bbazzarrakk) DATE: 2009-05-13 03:22 SUBJECT: RE: Help setting up FasterCSV to import a file I'm not super sure I understood the question, but it sounds like you want FasterCSV to read from the incoming IO object in your Rails parameters. If so, you can probably use something like:
FCSV.new(params[:file]).each do |row|
# use row here...
end
I hope that helps.
| |