class Numeric

def megabytes

2.megabytes # => 2_097_152

Returns the number of bytes equivalent to the megabytes provided.
def megabytes
  self * MEGABYTE
end