Sha256: 8d63a1f3d4b48fa6f38db6f26f67c2914d628fe01c302a120409b626e3b5844c

Contents?: true

Size: 1.67 KB

Versions: 58

Compression:

Stored size: 1.67 KB

Contents

# frozen_string_literal: true

# Copyright (c) 2018-2019 Zerocracy, Inc.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the 'Software'), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

require 'time'

# Size in bytes.
# Author:: Yegor Bugayenko (yegor256@gmail.com)
# Copyright:: Copyright (c) 2018 Yegor Bugayenko
# License:: MIT
module Zold
  # Size
  class Size
    def initialize(bytes)
      @bytes = bytes
    end

    def to_s
      if @bytes.nil?
        '?'
      elsif @bytes < 1024
        "#{@bytes}b"
      elsif @bytes < 1024 * 1024
        "#{(@bytes / 1024).round}Kb"
      elsif @bytes < 1024 * 1024 * 1024
        "#{(@bytes / (1024 * 1024)).round}Mb"
      else
        "#{(@bytes / (1024 * 1024 * 1024)).round}Gb"
      end
    end
  end
end

Version data entries

58 entries across 58 versions & 1 rubygems

Version Path
zold-0.29.32 lib/zold/size.rb
zold-0.29.31 lib/zold/size.rb
zold-0.29.30 lib/zold/size.rb
zold-0.29.29 lib/zold/size.rb
zold-0.29.28 lib/zold/size.rb
zold-0.29.27 lib/zold/size.rb
zold-0.29.26 lib/zold/size.rb
zold-0.29.25 lib/zold/size.rb
zold-0.29.24 lib/zold/size.rb
zold-0.29.23 lib/zold/size.rb
zold-0.29.22 lib/zold/size.rb
zold-0.29.21 lib/zold/size.rb
zold-0.29.20 lib/zold/size.rb
zold-0.26.19 lib/zold/size.rb
zold-0.26.18 lib/zold/size.rb
zold-0.26.17 lib/zold/size.rb
zold-0.26.16 lib/zold/size.rb
zold-0.26.15 lib/zold/size.rb
zold-0.26.14 lib/zold/size.rb
zold-0.26.13 lib/zold/size.rb