You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Show shinpans with grade and team name or pool number (for Individual Category)cup=Cup.lastindividual_categories=cup.individual_categoriesteam_categories=cup.team_categories(individual_categories + team_categories).eachdo |category|
shinpans=Kenshi.joins(:participations).merge(category.participations).where(grade: %w[5Dan6Dan7Dan])CSV.open("/Users/yannis/Dropbox/kendo/kasaharacup/2023/Shinpans/#{category.name.parameterize}.csv","wb")do |csv|
csv << ["Name","Grade","Team"]shinpans.eachdo |shinpan|
participation=shinpan.participations.find{ |p| p.category == category}csv << [shinpan.full_name,shinpan.grade,participation.team&.name.presence || participation.pool_number.presence]endendend