Pangea::Util

Public Class Methods

humanize_bytes(bytes) click to toggle source

(Not documented)

# File lib/util/string.rb, line 4
    def self.humanize_bytes(bytes)
      m = bytes.to_i
      units = %w[Bits Bytes MB GB TB PB]
      while (m/1024.0) >= 1 
        m = m/1024.0
        units.shift
      end
      return m.round.to_s + " #{units[0]}"
    end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.