Skip to content

Commit

Permalink
Merge pull request #375 from Ybrin/master
Browse files Browse the repository at this point in the history
Fix issue #359
  • Loading branch information
orta committed Jun 22, 2018
2 parents 0efbcc8 + 06bc2b1 commit bcd28fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/owner.slim
Expand Up @@ -47,7 +47,7 @@ ruby:
sum[:apps] = pod[:stat_metric][:app_total] + (sum[:apps] || 0)
sum[:downloads] = pod[:stat_metric][:download_total] + (sum[:downloads] || 0)
sum[:stars] = (pod[:github_pod_metric][:stargazers] || 0) + (sum[:stars] || 0)
sum[:loc] = pod[:cocoadocs_pod_metric][:total_lines_of_code] + (sum[:loc] || 0)
sum[:loc] = (pod[:cocoadocs_pod_metric][:total_lines_of_code] || 0) + (sum[:loc] || 0)
sum
end

Expand Down

0 comments on commit bcd28fe

Please sign in to comment.