class Time

def beginning_of_day

Returns a new Time representing the start of the day (0:00)
def beginning_of_day
  change(hour: 0)
end