Sha256: bb2fb0047b5021360b96059e425f9f028e9e9cae99841440474555c2d4d205aa
Contents?: true
Size: 306 Bytes
Versions: 19
Compression:
Stored size: 306 Bytes
Contents
# frozen_string_literal: true # Used when you need to supply a destination IO for some # write operations, but want to discard the data (like when # estimating the size of a ZIP) module ZipTricks::NullWriter # @param data[String] the data to write # @return [self] def self.<<(_) self end end
Version data entries
19 entries across 19 versions & 1 rubygems