# File lib/active_support/core_ext/time/calculations.rb, line 41
        def months_ago(months)
          if months >= self.month 
            change(:year => self.year - 1, :month => 12).months_ago(months - self.month)
          else
            change(:year => self.year, :month => self.month - months)
          end
        end