Add subcategory report

This commit is contained in:
rebuilt 2023-05-19 16:50:10 -07:00
parent f590bc9dd5
commit 08c946a469
4 changed files with 149 additions and 19 deletions

6
lib/tasks/report.rake Normal file
View file

@ -0,0 +1,6 @@
namespace :report do
desc 'create a report of the scores for all subcategories'
task subcategory: :environment do
Report::Subcategory.create_report(filename: 'rpp_subcategory_report.csv')
end
end