Created
January 27, 2021 23:22
-
-
Save oncomouse/528cf8e10765337f8671b76e2d17c12b to your computer and use it in GitHub Desktop.
Signup Maker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'csv' | |
File.open('./spr2021-signup.md', 'w') do |fp| | |
fp.puts '# ENGL 604: Spring 2021 Presentations' | |
CSV.foreach('./spr2021.csv', headers: true) do |row| | |
fp.puts "\n## #{row.field('FIRST NAME')} #{row.field('LAST NAME')}\n\n" | |
fp.puts "### Dates\n\n1. \n1. \n1. \n\n" | |
fp.puts "### Topics\n\n* \n* \n" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Output will be something like: