class RubyCritic::AnalysedModule

def complexity_per_method

def complexity_per_method
  if methods_count.zero?
    'N/A'
  else
    complexity.fdiv(methods_count).round(1)
  end
end