class AgileTrello::CompletedCard
Constants
- SECONDS_IN_24HRS
Attributes
cycle_time[R]
Public Class Methods
new(start_date, end_date)
click to toggle source
# File lib/CompletedCard.rb, line 7 def initialize(start_date, end_date) @cycle_time = ((end_date - start_date) / SECONDS_IN_24HRS).round(2) end