Skip to content

Commit

Permalink
do not freeze NumberHelper defaults.
Browse files Browse the repository at this point in the history
Closes #9767.
  • Loading branch information
senny committed Mar 18, 2013
1 parent 1c2717d commit f662a74
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actionpack/lib/action_view/helpers/number_helper.rb
Expand Up @@ -360,7 +360,7 @@ def number_with_precision(number, options = {})

end

STORAGE_UNITS = [:byte, :kb, :mb, :gb, :tb].freeze
STORAGE_UNITS = [:byte, :kb, :mb, :gb, :tb]

# Formats the bytes in +number+ into a more understandable
# representation (e.g., giving it 1500 yields 1.5 KB). This
Expand Down Expand Up @@ -452,7 +452,7 @@ def number_to_human_size(number, options = {})
end

DECIMAL_UNITS = {0 => :unit, 1 => :ten, 2 => :hundred, 3 => :thousand, 6 => :million, 9 => :billion, 12 => :trillion, 15 => :quadrillion,
-1 => :deci, -2 => :centi, -3 => :mili, -6 => :micro, -9 => :nano, -12 => :pico, -15 => :femto}.freeze
-1 => :deci, -2 => :centi, -3 => :mili, -6 => :micro, -9 => :nano, -12 => :pico, -15 => :femto}

# Pretty prints (formats and approximates) a number in a way it
# is more readable by humans (eg.: 1200000000 becomes "1.2
Expand Down

0 comments on commit f662a74

Please sign in to comment.