class Rack::Directory

def filesize_format(int)

Provide human readable file sizes
def filesize_format(int)
  FILESIZE_FORMAT.each do |format, size|
    return format % (int.to_f / size) if int >= size
  end
  "#{int}B"
end