class Numeric

def gigabytes

2.gigabytes # => 2_147_483_648

Returns the number of bytes equivalent to the gigabytes provided.
def gigabytes
  self * GIGABYTE
end