BenMusch/nu-tab

View on GitHub
app/policies/stats/round.rb

Summary

Maintainability
A
1 hr
Test Coverage

Showing 3 of 3 total issues

Assignment Branch Condition size for policy_for is too high. [18.81/15]
Open

def self.policy_for(debater, round)
if round.bye? || round.all_win?
AverageStatsPolicy.new debater, round
elsif round.forfeit? || round.all_drop?
klass = round.winner?(debater.team) ? AverageStatsPolicy : self.forfeit_policy
Severity: Minor
Found in app/policies/stats/round.rb by rubocop

Method policy_for has a Cognitive Complexity of 11 (exceeds 5 allowed). Consider refactoring.
Open

def self.policy_for(debater, round)
if round.bye? || round.all_win?
AverageStatsPolicy.new debater, round
elsif round.forfeit? || round.all_drop?
klass = round.winner?(debater.team) ? AverageStatsPolicy : self.forfeit_policy
Severity: Minor
Found in app/policies/stats/round.rb - About 1 hr to fix

Add an empty line after magic comments.
Open

module Stats
Severity: Minor
Found in app/policies/stats/round.rb by rubocop
Category
Status