class DateTime

def ago(seconds)

Do not use this method in combination with x.months, use months_ago instead!
Returns a new DateTime representing the time a number of seconds ago.
def ago(seconds)
  since(-seconds)
end