Skip to content

Instantly share code, notes, and snippets.

Created December 7, 2015 22:07
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 anonymous/b32533f1e6f67d78e8bc to your computer and use it in GitHub Desktop.
Save anonymous/b32533f1e6f67d78e8bc to your computer and use it in GitHub Desktop.
def csv_to_hash(csv)
# Takes anything #read (which returns [[]]) or #to_a, like CSV
header, *lines = csv.read
rescue NoMethodError
header, *lines = csv.to_a
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment