aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/float.rb
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.rb
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.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/float.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/core_ext/float.rb b/activesupport/lib/active_support/core_ext/float.rb
index 86862b7150..af166aa610 100644
--- a/activesupport/lib/active_support/core_ext/float.rb
+++ b/activesupport/lib/active_support/core_ext/float.rb
@@ -1,5 +1,7 @@
require 'active_support/core_ext/float/rounding'
+require 'active_support/core_ext/float/time'
class Float #:nodoc:
include ActiveSupport::CoreExtensions::Float::Rounding
+ include ActiveSupport::CoreExtensions::Float::Time
end