Skip to content

Instantly share code, notes, and snippets.

@benmmurphy
Created February 4, 2013 10:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benmmurphy/4706099 to your computer and use it in GitHub Desktop.
Save benmmurphy/4706099 to your computer and use it in GitHub Desktop.
csv object loading
irb(main):004:0> CSV.dump([Object.new])
=> "class,Object\n\n\n"
irb(main):005:0> CSV.load(CSV.dump([Object.new]))
=> [#<Object:0x00000100ae90d8>]
@zzak
Copy link

zzak commented Feb 5, 2013

I will also help review and commit any patches for CSV's documentation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment