class Time

def beginning_of_hour

Returns a new Time representing the start of the hour (x:00)
def beginning_of_hour
  change(:min => 0)
end