Ruby CSV Parse

require 'csv'

CSV.open('data.csv', 'r', ';') do |row|
  puts row
end
wolf-like_hunter