aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/date
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-05-19 00:20:10 +0200
committerXavier Noria <fxn@hashref.com>2010-05-19 00:20:10 +0200
commitb753b4a076d7067efccbd1ad384829f77e62a064 (patch)
tree06a018d91b782a627a0ae9aa422326418e1ca771 /activesupport/lib/active_support/core_ext/date
parent223d6415d045e670610603665c21e93b06a01db7 (diff)
downloadrails-b753b4a076d7067efccbd1ad384829f77e62a064.tar.gz
rails-b753b4a076d7067efccbd1ad384829f77e62a064.tar.bz2
rails-b753b4a076d7067efccbd1ad384829f77e62a064.zip
removes deprecations of last_(month|year) from master, they will be deprecated in 2.3 instead
Diffstat (limited to 'activesupport/lib/active_support/core_ext/date')
-rw-r--r--activesupport/lib/active_support/core_ext/date/calculations.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/activesupport/lib/active_support/core_ext/date/calculations.rb b/activesupport/lib/active_support/core_ext/date/calculations.rb
index 755d96ce91..579079d4f1 100644
--- a/activesupport/lib/active_support/core_ext/date/calculations.rb
+++ b/activesupport/lib/active_support/core_ext/date/calculations.rb
@@ -2,7 +2,6 @@ require 'date'
require 'active_support/duration'
require 'active_support/core_ext/time/zones'
require 'active_support/core_ext/object/acts_like'
-require 'active_support/deprecation'
class Date
if RUBY_VERSION < '1.9'
@@ -147,11 +146,6 @@ class Date
advance(:years => years)
end
- def last_year # :nodoc:
- ActiveSupport::Deprecation.warn("Date#last_year has been deprecated, please use Date#prev_year instead", caller)
- prev_year
- end
-
# Shorthand for years_ago(1)
def prev_year
years_ago(1)
@@ -161,11 +155,6 @@ class Date
def next_year
years_since(1)
end unless method_defined?(:next_year)
-
- def last_month # :nodoc:
- ActiveSupport::Deprecation.warn("Date#last_month has been deprecated, please use Date#prev_month instead", caller)
- prev_month
- end
# Short-hand for months_ago(1)
def prev_month