Flowdock
method

calculate_total_seconds

Importance_0
v6.0.0 - Show latest stable - 0 notes - Class: ActiveSupport::Duration
calculate_total_seconds(parts) private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activesupport/lib/active_support/duration.rb, line 202
        def calculate_total_seconds(parts)
          parts.inject(0) do |total, (part, value)|
            total + value * PARTS_IN_SECONDS[part]
          end
        end
Register or log in to add new notes.