A code autograder for student homework submissions
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
383 B

  1. module KGrader
  2. class Roster
  3. attr_reader :semester
  4. def initialize(filesystem, course, semester)
  5. @fs = filesystem
  6. @course = course
  7. @semester = semester
  8. end
  9. def load(filename)
  10. # TODO
  11. puts "Loading roster for #{@course.name}:#{@semester} from [#{filename}]..."
  12. end
  13. def students
  14. # TODO
  15. ["ksmith12"]
  16. end
  17. end
  18. end