diff options
author | Akshay Vishnoi <akshay.vishnoi@vinsol.com> | 2015-12-22 23:05:50 +0530 |
---|---|---|
committer | Akshay Vishnoi <akshay.vishnoi@vinsol.com> | 2015-12-22 23:07:06 +0530 |
commit | 3d1f95d0e8ca70f5d892d9b2ed78e99ff7cb3bde (patch) | |
tree | 063fa8ff94f7cec601b58c8b4a52e6657c95c3f6 /guides/source | |
parent | 47fd7c95555cb1c6e05768cd1b9ee38ad5cf9d1f (diff) | |
download | rails-3d1f95d0e8ca70f5d892d9b2ed78e99ff7cb3bde.tar.gz rails-3d1f95d0e8ca70f5d892d9b2ed78e99ff7cb3bde.tar.bz2 rails-3d1f95d0e8ca70f5d892d9b2ed78e99ff7cb3bde.zip |
Add support for Petabyte and Exabyte in number to human size
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_support_core_extensions.md | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/guides/source/active_support_core_extensions.md b/guides/source/active_support_core_extensions.md index 0cb34aa8bc..0aca6db9b6 100644 --- a/guides/source/active_support_core_extensions.md +++ b/guides/source/active_support_core_extensions.md @@ -2024,12 +2024,14 @@ Produce a string representation of a number rounded to a precision: Produce a string representation of a number as a human-readable number of bytes: ```ruby -123.to_s(:human_size) # => 123 Bytes -1234.to_s(:human_size) # => 1.21 KB -12345.to_s(:human_size) # => 12.1 KB -1234567.to_s(:human_size) # => 1.18 MB -1234567890.to_s(:human_size) # => 1.15 GB -1234567890123.to_s(:human_size) # => 1.12 TB +123.to_s(:human_size) # => 123 Bytes +1234.to_s(:human_size) # => 1.21 KB +12345.to_s(:human_size) # => 12.1 KB +1234567.to_s(:human_size) # => 1.18 MB +1234567890.to_s(:human_size) # => 1.15 GB +1234567890123.to_s(:human_size) # => 1.12 TB +1234567890123456.to_s(:human_size) # => 1.1 PB +1234567890123456789.to_s(:human_size) # => 1.07 EB ``` Produce a string representation of a number in human-readable words: |