module DateAndTime::Calculations

def months_ago(months)

Returns a new date/time the specified number of months ago.
def months_ago(months)
  advance(:months => -months)
end