CSV.open("file.csv", "a+") do |csv| csv << ["cow", "3","2500"] end
CSV.open("filename.csv", "wb") do |row| row << ["a", "b", "c"] end