Class: HumanSizeStatic

Inherits:
Object
  • Object
show all
Defined in:
lib/human_size.rb

Overview

——————————————————————————– # Description # ——————————————————————————– # This is a static access wrapper to the main HumanDuration class below. # ——————————————————————————– #

Class Method Summary collapse

Class Method Details

.human_size(bytes, a_kilobyte_is_1024_bytes = true) ⇒ Object



25
26
27
28
# File 'lib/human_size.rb', line 25

def self.human_size(bytes, a_kilobyte_is_1024_bytes = true)
    h = HumanSize.new
    h.human_size(bytes, a_kilobyte_is_1024_bytes)
end