aboutsummaryrefslogtreecommitdiff
path: root/time_util.rb
blob: 410b5cd989bbadf787ad5f3757b9cc8528b7747f (plain)
1
2
3
4
5
6
7
class Time
  def round(minutes = 15)
    minutes *= 60
    Time.at((self.to_f / minutes).round * minutes)
  end
end