Add subcategory report

This commit is contained in:
rebuilt 2023-05-19 16:50:10 -07:00
parent 2e3461b685
commit 87ca23df79
4 changed files with 146 additions and 16 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: 'ecp_subcategory_report.csv')
end
end