class Time

def beginning_of_minute

Returns a new Time representing the start of the minute (x:xx:00)
def beginning_of_minute
  change(sec: 0)
end