Class: Humanize::Byte

Inherits:
Bytes
  • Object
show all
Defined in:
lib/humanize/byte.rb

Constant Summary

Constants inherited from Bytes

Humanize::Bytes::VERSION

Instance Method Summary collapse

Methods inherited from Bytes

#initialize, #to_s, #value

Constructor Details

This class inherits a constructor from Humanize::Bytes

Instance Method Details

#to_bObject



3
4
5
# File 'lib/humanize/byte.rb', line 3

def to_b
  self
end

#to_gObject



15
16
17
# File 'lib/humanize/byte.rb', line 15

def to_g
  Giga.new @value / 1024.0 / 1024 / 1024
end

#to_kObject



7
8
9
# File 'lib/humanize/byte.rb', line 7

def to_k
  Kilo.new @value / 1024.0
end

#to_mObject



11
12
13
# File 'lib/humanize/byte.rb', line 11

def to_m
  Mega.new @value / 1024.0 / 1024
end