Tagged Questions

1
vote
2answers
289 views

Generating fields containing newline with Ruby CSV::Writer

I want to make CSV::Writer generate a line break within a quoted string: A,B,"Line Line",C So that the row would display in Excel as: A,B,Line,C Line Is it possible to pr …
0
votes
3answers
56 views

FasterCSV: columns into an array — rails

I'm trying to get fastercsv setup so that rather than parsing each row, it will place each column into an multi array. CSV import file: id, first name, last name, age 1, joe, smit …
0
votes
1answer
30 views

Error with Paperclip / FasterCSV Processing for optional csv upload

Hi, I have a page where a user can import data to the site. either in the form of copy and pasting into a text area from excel, or by uploading a .csv file. The controller checks …
0
votes
3answers
86 views

Import CSV in batches of lines in Rails?

I'm using FasterCSV to import an uploaded file to a model, and it's working great for small files. However when I try to import a large dataset (21,000 lines) it takes ages and I g …
0
votes
2answers
77 views

RoR ActiveRecord find_by_sql Question

I want to preface this question by stating that I am fairly new to Ruby development, however, personally, I've dedicated myself to trying to find the answers myself, as opposed to …
0
votes
2answers
65 views

FasterCSV - raising MalformedCSVError when it shouldn’t

Sample data: "iWine","Barcode","Location","Bin","Size","Valuation","Price","StoreName",\ "PurchaseDate","Note","Vintage","Wine","Locale","Country","Region","SubRegion",\ "Appellat …
1
vote
4answers
682 views

RoR: FasterCSV to hash

I'm really struggling with grasping how to effectively use FasterCSV to accomplish what I want. I have a CSV file; say: ID,day,site test,tuesday,cnn.com bozo,friday,fark.com god, …
1
vote
2answers
247 views

How do I import using FasterCSV a row with a name like “Ciarán”?

I am trying to load in my data migration a member database. Quite a few of the names have special characters such as "Ciarán". I've set up a simple example like this: require 'r …
0
votes
3answers
902 views

FasterCSV: Read Remote CSV Files

I can't seem to get this to work. I want to pull a CSV file from a different webserver to read in my application. This is how I'd like to call it: url = 'http://www.testing.com/ …
0
votes
1answer
353 views

How do you change headers in a CSV File with FasterCSV then save the new headers?

Hi, I'm having trouble understanding the :header_converters and :converters in FasterCSV. Basically, all I want to do is change column headers to their appropriate column names. s …
1
vote
1answer
290 views

Rails: FasterCSV - Unique Occurences

I have my CSV file imported as such: records = FasterCSV.read(path, :headers => true, :header_converters => :symbol) How can I get the unique occurences of my data? For i …
1
vote
1answer
252 views

Importing a huge csv data file and using the header to access columns using Ruby.

I need to import a huge csv data file (6880 columns) and I need to be able use the column headers to access it. What's the best way? Speed isn't important. Clarity is.
0
votes
1answer
394 views

Ruby and FasterCSV: converting uneven rows to columns

I have a CSV data file with rows that may have lots of columns 500+ and some with a lot less. I need to transpose it so that each row becomes a column in the output file. The pro …