Sha256: 15771e9450e4372c962fc5a4edf234215d3a8f9f7fcdb1427adeeda2c6d9f51c
Contents?: true
Size: 928 Bytes
Versions: 145
Compression:
Stored size: 928 Bytes
Contents
module ActiveSupport #:nodoc: module CoreExtensions #:nodoc: module Numeric #:nodoc: # Enables the use of byte calculations and declarations, like 45.bytes + 2.6.megabytes module Bytes def bytes self end alias :byte :bytes def kilobytes self * 1024 end alias :kilobyte :kilobytes def megabytes self * 1024.kilobytes end alias :megabyte :megabytes def gigabytes self * 1024.megabytes end alias :gigabyte :gigabytes def terabytes self * 1024.gigabytes end alias :terabyte :terabytes def petabytes self * 1024.terabytes end alias :petabyte :petabytes def exabytes self * 1024.petabytes end alias :exabyte :exabytes end end end end
Version data entries
145 entries across 144 versions & 20 rubygems