Refactor based on rubocop and reek suggestions

This commit is contained in:
rebuilt 2022-07-08 19:07:23 -07:00
parent fc853c4fbc
commit 18b479b8b2
7 changed files with 733 additions and 678 deletions

View file

@ -1,2 +1,3 @@
class Score < Struct.new(:average, :meets_teacher_threshold?, :meets_student_threshold?, :meets_admin_data_threshold?)
NIL_SCORE = Score.new(nil, false, false, false)
end