Class: SitemapGenerator::Numeric
- Inherits:
-
Object
- Object
- SitemapGenerator::Numeric
- Defined in:
- lib/sitemap_generator/core_ext/numeric.rb
Constant Summary collapse
- KILOBYTE =
1024
- MEGABYTE =
KILOBYTE * 1024
- GIGABYTE =
MEGABYTE * 1024
- TERABYTE =
GIGABYTE * 1024
- PETABYTE =
TERABYTE * 1024
- EXABYTE =
PETABYTE * 1024
Instance Method Summary collapse
-
#bytes ⇒ Object
(also: #byte)
Enables the use of byte calculations and declarations, like 45.bytes + 2.6.megabytes.
- #exabytes ⇒ Object (also: #exabyte)
- #gigabytes ⇒ Object (also: #gigabyte)
-
#initialize(number) ⇒ Numeric
constructor
A new instance of Numeric.
- #kilobytes ⇒ Object (also: #kilobyte)
- #megabytes ⇒ Object (also: #megabyte)
- #petabytes ⇒ Object (also: #petabyte)
- #terabytes ⇒ Object (also: #terabyte)
Constructor Details
#initialize(number) ⇒ Numeric
Returns a new instance of Numeric.
11 12 13 |
# File 'lib/sitemap_generator/core_ext/numeric.rb', line 11 def initialize(number) @number = number end |
Instance Method Details
#bytes ⇒ Object Also known as: byte
Enables the use of byte calculations and declarations, like 45.bytes + 2.6.megabytes
16 17 18 |
# File 'lib/sitemap_generator/core_ext/numeric.rb', line 16 def bytes @number end |
#exabytes ⇒ Object Also known as: exabyte
46 47 48 |
# File 'lib/sitemap_generator/core_ext/numeric.rb', line 46 def exabytes @number * EXABYTE end |
#gigabytes ⇒ Object Also known as: gigabyte
31 32 33 |
# File 'lib/sitemap_generator/core_ext/numeric.rb', line 31 def gigabytes @number * GIGABYTE end |
#kilobytes ⇒ Object Also known as: kilobyte
21 22 23 |
# File 'lib/sitemap_generator/core_ext/numeric.rb', line 21 def kilobytes @number * KILOBYTE end |
#megabytes ⇒ Object Also known as: megabyte
26 27 28 |
# File 'lib/sitemap_generator/core_ext/numeric.rb', line 26 def megabytes @number * MEGABYTE end |
#petabytes ⇒ Object Also known as: petabyte
41 42 43 |
# File 'lib/sitemap_generator/core_ext/numeric.rb', line 41 def petabytes @number * PETABYTE end |
#terabytes ⇒ Object Also known as: terabyte
36 37 38 |
# File 'lib/sitemap_generator/core_ext/numeric.rb', line 36 def terabytes @number * TERABYTE end |