aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/numeric/time.rb
diff options
context:
space:
mode:
authorJeremy Kemper <jeremy@bitsweat.net>2005-06-24 20:42:16 +0000
committerJeremy Kemper <jeremy@bitsweat.net>2005-06-24 20:42:16 +0000
commitbb6b14b04f9d3f1e8d8811588902eb7d61fb054e (patch)
treeef6be402564baf620daffb856033719b39a0b4c1 /activesupport/lib/active_support/core_ext/numeric/time.rb
parentc8e2cf3ed0c35205ff80bded5232924685f5904a (diff)
downloadrails-bb6b14b04f9d3f1e8d8811588902eb7d61fb054e.tar.gz
rails-bb6b14b04f9d3f1e8d8811588902eb7d61fb054e.tar.bz2
rails-bb6b14b04f9d3f1e8d8811588902eb7d61fb054e.zip
Increased accuracy of 1.year by accounting for leap years. The time extensions are not meant to be super-precise but this seems worth it since otherwise you lose a lot of days doing 40.years.ago. Closes #1488 [tuxie@dekadance.se]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@1499 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib/active_support/core_ext/numeric/time.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/numeric/time.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/core_ext/numeric/time.rb b/activesupport/lib/active_support/core_ext/numeric/time.rb
index 43c0425b00..de726281b8 100644
--- a/activesupport/lib/active_support/core_ext/numeric/time.rb
+++ b/activesupport/lib/active_support/core_ext/numeric/time.rb
@@ -32,9 +32,9 @@ module ActiveSupport #:nodoc:
self * 30.days
end
alias :month :months
-
+
def years
- self * 365.days
+ (self * 365.25.days).to_i
end
alias :year :years