You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm fairly new to ruby, but on lines 121 and 125 of csv_source.rb, shouldn't you split the row and field_vals variables by a comma?
Without that, the row and field_vals variables were set to the comma-separated string for a given row, i.e. foo,bar,1,2,3, which caused issues with the following each_with_index and map calls.