# File lib/sup/util.rb, line 474
  def nearest_hour
    if min < 30
      self
    else
      self + (60 - min) * 60
    end
  end