class ActiveSupport::Duration

def calculate_total_seconds(parts)

def calculate_total_seconds(parts)
  parts.inject(0) do |total, (part, value)|
    total + value * PARTS_IN_SECONDS[part]
  end
end