mirror of
https://github.com/github/rails.git
synced 2026-05-04 03:00:06 -04:00
Use Rubys own Float#round method in versions 1.9 and above
This commit is contained in:
committed by
Aaron Patterson
parent
03cbd9672c
commit
532b77077f
@@ -1 +1 @@
|
||||
require 'active_support/core_ext/float/rounding'
|
||||
require 'active_support/core_ext/float/rounding' if RUBY_VERSION < '1.9'
|
||||
|
||||
@@ -1818,7 +1818,7 @@ h3. Extensions to +Float+
|
||||
|
||||
h4. +round+
|
||||
|
||||
The built-in method +Float#round+ rounds a float to the nearest integer. Active Support adds an optional parameter to let you specify a precision:
|
||||
The built-in method +Float#round+ rounds a float to the nearest integer. In Ruby 1.9 this method takes optional parameter to let you specify a precision. Active Support adds that functionality to +round+ in previous versions of Ruby:
|
||||
|
||||
<ruby>
|
||||
Math::E.round(4) # => 2.7183
|
||||
|
||||
Reference in New Issue
Block a user