From 532627452d0e581eb263499ccf84cf92f27de4d8 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 5 Jul 2006 01:04:32 +0000 Subject: Added special case for "1 Byte" in NumberHelper#number_to_human_size (closes #5593) [murpyh@rubychan.de] git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4537 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionpack/lib/action_view/helpers/number_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'actionpack/lib') diff --git a/actionpack/lib/action_view/helpers/number_helper.rb b/actionpack/lib/action_view/helpers/number_helper.rb index 9098dd8c33..cb312320ef 100644 --- a/actionpack/lib/action_view/helpers/number_helper.rb +++ b/actionpack/lib/action_view/helpers/number_helper.rb @@ -3,7 +3,6 @@ module ActionView # Provides methods for converting a number into a formatted string that currently represents # one of the following forms: phone number, percentage, money, or precision level. module NumberHelper - # Formats a +number+ into a US phone number string. The +options+ can be a hash used to customize the format of the output. # The area code can be surrounded by parentheses by setting +:area_code+ to true; default is false # The delimiter can be set using +:delimiter+; default is "-" @@ -86,6 +85,7 @@ module ActionView # human_size(1234567890) => 1.1 GB def number_to_human_size(size) case + when size == 1 : '1 Byte' when size < 1.kilobyte: '%d Bytes' % size when size < 1.megabyte: '%.1f KB' % (size / 1.0.kilobyte) when size < 1.gigabyte: '%.1f MB' % (size / 1.0.megabyte) -- cgit v1.2.3