Sha256: b08e172ba238ea73d37ff903714024ea6071eeca38f4a10e7b662e9ac6163810
Contents?: true
Size: 702 Bytes
Versions: 16
Compression:
Stored size: 702 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 end end end end
Version data entries
16 entries across 16 versions & 4 rubygems