Skip to content

Instantly share code, notes, and snippets.

@lukemorton
Created August 14, 2015 11:24
Show Gist options
  • Save lukemorton/b208d35b122cec347806 to your computer and use it in GitHub Desktop.
Save lukemorton/b208d35b122cec347806 to your computer and use it in GitHub Desktop.
def hash_to_csv(hash)
csv = hash.map { |k, v| "#{k},#{v}" }.join("\n")
File.open('hash.csv', 'w') { |f| f.write(csv) }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment