method

calculate_total

calculate_total()
private

No documentation available.

# File railties/lib/rails/code_statistics.rb, line 55
    def calculate_total
      @statistics.each_with_object(CodeStatisticsCalculator.new) do |pair, total|
        total.add(pair.last)
      end
    end