Skip to content

Instantly share code, notes, and snippets.

@isidzukuri
Created October 6, 2022 11:20
Show Gist options
  • Select an option

  • Save isidzukuri/f29214ad1314aef8206dc087f29fd406 to your computer and use it in GitHub Desktop.

Select an option

Save isidzukuri/f29214ad1314aef8206dc087f29fd406 to your computer and use it in GitHub Desktop.
ruby generate csv from hash
require 'csv'
CSV.open('name.csv', "wb") do |csv|
csv << data.first.keys
data.each do |row|
csv << row.values
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment