Skip to content

Instantly share code, notes, and snippets.

View ahmad19's full-sized avatar
:electron:

Ahmad hamza ahmad19

:electron:
View GitHub Profile
@ahmad19
ahmad19 / parse_csv.rb
Created November 29, 2018 06:20
Read CSV and return as Array of hashes
# Using ruby's inbuild CSV library
data = []
CSV.foreach(file_path, headers: true) do |row|
data << Hash[row]
end
data