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.

18 lines
362 B

  1. module KGrader::Backend
  2. class SVN
  3. def initialize(filesystem, config)
  4. @fs = filesystem
  5. @config = config
  6. end
  7. def fetch(semester, assignment, student)
  8. url = @config['url'] % {
  9. :semester => semester, :assignment => assignment, :student => student }
  10. # TODO
  11. puts "[fetching #{student}: #{url}]"
  12. end
  13. end
  14. end