aboutsummaryrefslogtreecommitdiffstats
path: root/lib/time_duration.rb
blob: 231fff7b8fb018816c9aec547a1480158a844c8e (plain)
1
2
3
4
5
module TimeDuration
  def self.exceeds_gap?(duration, earlier, later)
    (4 * 3600) < ((later - earlier) % (3600 * 24))
  end
end