How can I skip the header row when reading a CSV in Ruby? [duplicate]
Look at #shift from CSV Class: The primary read method for wrapped Strings and IOs, a single row is pulled from the data source, parsed and returned as an Array of fields (if header rows are not used) An Example: require ‘csv’ # CSV FILE # name, surname, location # Mark, Needham, Sydney # David, … Read more