Class: Numeric
- Inherits:
-
Object
- Object
- Numeric
- Defined in:
- lib/cms_scanner/numeric.rb
Overview
Hack of the Numeric class
Instance Method Summary collapse
-
#bytes_to_human ⇒ String
A human readable string of the value.
Instance Method Details
#bytes_to_human ⇒ String
Returns A human readable string of the value.
6 7 8 9 10 11 12 |
# File 'lib/cms_scanner/numeric.rb', line 6 def bytes_to_human units = %w[B KB MB GB TB] e = abs.zero? ? abs : (Math.log(abs) / Math.log(1024)).floor s = format('%<s>.3f', s: (abs.to_f / (1024**e))) s.sub(/\.?0*$/, " #{units[e]}") end |