module ZipTricks::NullWriter
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)
Public Class Methods
<<(_)
click to toggle source
@param _ the data to write @return [self]
# File lib/zip_tricks/null_writer.rb, line 9 def self.<<(_) self end