lib/cms_scanner/numeric.rb in cms_scanner-0.6.0 vs lib/cms_scanner/numeric.rb in cms_scanner-0.6.1
- old
+ new
@@ -4,10 +4,10 @@
class Numeric
# @return [ String ] A human readable string of the value
def bytes_to_human
units = %w[B KB MB GB TB]
e = abs.zero? ? abs : (Math.log(abs) / Math.log(1024)).floor
- s = format('%.3f', (abs.to_f / 1024**e))
+ s = format('%<s>.3f', s: (abs.to_f / 1024**e))
s.sub(/\.?0*$/, ' ' + units[e])
end
end