lib/cms_scanner/numeric.rb in cms_scanner-0.13.5 vs lib/cms_scanner/numeric.rb in cms_scanner-0.13.6

- 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('%<s>.3f', s: (abs.to_f / 1024**e)) + s = format('%<s>.3f', s: (abs.to_f / (1024**e))) s.sub(/\.?0*$/, " #{units[e]}") end end