Skip to content

Instantly share code, notes, and snippets.

@dleve123
Created September 30, 2014 18:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dleve123/9bda689eead503515e7e to your computer and use it in GitHub Desktop.
Save dleve123/9bda689eead503515e7e to your computer and use it in GitHub Desktop.
do something with headers one time in CSV
headers_read = false
CSV.foreach(headers: true) do |row|
validate_header_row(headers) unless headers_read
headers_read = true
# everything else
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment