aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/float
diff options
context:
space:
mode:
authorTom Lea <commit@tomlea.co.uk>2008-09-11 16:41:19 +0100
committergbuesing <gbuesing@gmail.com>2008-10-13 20:00:09 -0500
commitd599b8000968047b4095dd8ff6c8ef10bb4ed462 (patch)
tree97ff0ef8ef8aa110748ec24da71d3c56568b6b53 /activesupport/lib/active_support/core_ext/float
parent27c70ff386e76ed0af41b53f2ba8cdb09bc94ace (diff)
downloadrails-d599b8000968047b4095dd8ff6c8ef10bb4ed462.tar.gz
rails-d599b8000968047b4095dd8ff6c8ef10bb4ed462.tar.bz2
rails-d599b8000968047b4095dd8ff6c8ef10bb4ed462.zip
Deprecated Float#years and Float#months, moved Numeric#years and Numeric#months into Integer.
Diffstat (limited to 'activesupport/lib/active_support/core_ext/float')
-rw-r--r--activesupport/lib/active_support/core_ext/float/time.rb27
1 files changed, 27 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/float/time.rb b/activesupport/lib/active_support/core_ext/float/time.rb
new file mode 100644
index 0000000000..6229cfe76b
--- /dev/null
+++ b/activesupport/lib/active_support/core_ext/float/time.rb
@@ -0,0 +1,27 @@
+module ActiveSupport #:nodoc:
+ module CoreExtensions #:nodoc:
+ module Float #:nodoc:
+ module Time
+ # Deprication helper methods not available as core_ext is loaded first.
+ def years
+ ::ActiveSupport::Deprecation.warn(self.class.deprecated_method_warning(:years), caller)
+ years_without_deprecation
+ end
+ def months
+ ::ActiveSupport::Deprecation.warn(self.class.deprecated_method_warning(:months), "Fractional months are not respected. Use .to_i before ", caller)
+ months_without_deprecation
+ end
+
+ def months_without_deprecation
+ ActiveSupport::Duration.new(self * 30.days, [[:months, self]])
+ end
+ alias :month :months
+
+ def years_without_deprecation
+ ActiveSupport::Duration.new(self * 365.25.days, [[:years, self]])
+ end
+ alias :year :years
+ end
+ end
+ end
+end \ No newline at end of file