class DateTime

def since(seconds)

months_since instead!
instance time. Do not use this method in combination with x.months, use
Returns a new DateTime representing the time a number of seconds since the
def since(seconds)
  self + Rational(seconds.round, 86400)
end