aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/number_helper.rb
diff options
context:
space:
mode:
authorEileen M. Uchitelle <eileencodes@gmail.com>2015-12-27 09:56:43 -0500
committerEileen M. Uchitelle <eileencodes@gmail.com>2015-12-27 09:56:43 -0500
commit85048e90ab6ff6963919a9d10493b3910cd67b68 (patch)
treeead52c7c926ea8c7cf79adaa7356f6389c2ed28c /activesupport/lib/active_support/number_helper.rb
parentd5363e58135ea279f2a08c1a2d852ae2d11f0d65 (diff)
parent3d1f95d0e8ca70f5d892d9b2ed78e99ff7cb3bde (diff)
downloadrails-85048e90ab6ff6963919a9d10493b3910cd67b68.tar.gz
rails-85048e90ab6ff6963919a9d10493b3910cd67b68.tar.bz2
rails-85048e90ab6ff6963919a9d10493b3910cd67b68.zip
Merge pull request #22759 from akshay-vishnoi/human-size-helper
Add support for Petabyte and Exabyte in number to human size
Diffstat (limited to 'activesupport/lib/active_support/number_helper.rb')
-rw-r--r--activesupport/lib/active_support/number_helper.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/number_helper.rb b/activesupport/lib/active_support/number_helper.rb
index 92a453be48..64d9e71f37 100644
--- a/activesupport/lib/active_support/number_helper.rb
+++ b/activesupport/lib/active_support/number_helper.rb
@@ -243,6 +243,8 @@ module ActiveSupport
# number_to_human_size(1234567) # => 1.18 MB
# number_to_human_size(1234567890) # => 1.15 GB
# number_to_human_size(1234567890123) # => 1.12 TB
+ # number_to_human_size(1234567890123456) # => 1.1 PB
+ # number_to_human_size(1234567890123456789) # => 1.07 EB
# number_to_human_size(1234567, precision: 2) # => 1.2 MB
# number_to_human_size(483989, precision: 2) # => 470 KB
# number_to_human_size(1234567, precision: 2, separator: ',') # => 1,2 MB