aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJamis Buck <jamis@37signals.com>2005-08-31 10:47:05 +0000
committerJamis Buck <jamis@37signals.com>2005-08-31 10:47:05 +0000
commit2fed808ee4d572da5d86cb91c704e569589bd7cc (patch)
treeffe742ef68a0164976f64902cc955b4723565514
parent70e96c9f5c1bfcbb056c34fe7afe3d39226d1cc6 (diff)
downloadrails-2fed808ee4d572da5d86cb91c704e569589bd7cc.tar.gz
rails-2fed808ee4d572da5d86cb91c704e569589bd7cc.tar.bz2
rails-2fed808ee4d572da5d86cb91c704e569589bd7cc.zip
Make Time#last_month work when invoked on the 31st of a month.
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2083 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r--activesupport/CHANGELOG2
-rw-r--r--activesupport/lib/active_support/core_ext/time/calculations.rb20
-rw-r--r--activesupport/test/core_ext/time_ext_test.rb4
3 files changed, 20 insertions, 6 deletions
diff --git a/activesupport/CHANGELOG b/activesupport/CHANGELOG
index b1f81fdf1b..331dff24cf 100644
--- a/activesupport/CHANGELOG
+++ b/activesupport/CHANGELOG
@@ -1,5 +1,7 @@
*SVN*
+* Make Time#last_month work when invoked on the 31st of a month.
+
* Add Time.days_in_month, and make Time#next_month work when invoked on the 31st of a month
* Fixed that Time#midnight would have a non-zero usec on some platforms #1836
diff --git a/activesupport/lib/active_support/core_ext/time/calculations.rb b/activesupport/lib/active_support/core_ext/time/calculations.rb
index 76d6d4c176..451be56599 100644
--- a/activesupport/lib/active_support/core_ext/time/calculations.rb
+++ b/activesupport/lib/active_support/core_ext/time/calculations.rb
@@ -9,9 +9,13 @@ module ActiveSupport #:nodoc:
end
module ClassMethods
+ # Return the number of days in the given month. If a year is given,
+ # February will return the correct number of days for leap years.
+ # Otherwise, this method will always report February as having 28
+ # days.
def days_in_month(month, year=nil)
if month == 2
- (year % 4 == 0) && ((year % 100 != 0) || (year % 400 == 0)) ? 29 : 28
+ !year.nil? && (year % 4 == 0) && ((year % 100 != 0) || (year % 400 == 0)) ? 29 : 28
elsif month <= 7
month % 2 == 0 ? 30 : 31
else
@@ -56,17 +60,21 @@ module ActiveSupport #:nodoc:
# Returns a new Time representing the time a number of specified months ago
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
+ months_since(-months)
end
def months_since(months)
year, month, mday = self.year, self.month, self.mday
month += months
+
+ # in case months is negative
+ while month < 1
+ month += 12
+ year -= 1
+ end
+
+ # in case months is positive
while month > 12
month -= 12
year += 1
diff --git a/activesupport/test/core_ext/time_ext_test.rb b/activesupport/test/core_ext/time_ext_test.rb
index ca58cd0a8a..60649e4c76 100644
--- a/activesupport/test/core_ext/time_ext_test.rb
+++ b/activesupport/test/core_ext/time_ext_test.rb
@@ -161,4 +161,8 @@ class TimeExtCalculationsTest < Test::Unit::TestCase
def test_next_month_on_31st
assert_equal Time.local(2005, 9, 30), Time.local(2005, 8, 31).next_month
end
+
+ def test_last_month_on_31st
+ assert_equal Time.local(2004, 2, 29), Time.local(2004, 3, 31).last_month
+ end
end