class Ciphr::Functions::ZLib::Gzip::UncloseableIOProxy

Public Class Methods

new(delegate) click to toggle source
# File lib/ciphr/functions/zlib.rb, line 40
def initialize(delegate)
  @delegate = delegate
end

Public Instance Methods

method_missing(meth, *args, &block) click to toggle source
# File lib/ciphr/functions/zlib.rb, line 44
def method_missing(meth, *args, &block)
  if meth.to_s != "close"
    @delegate.send(meth, *args, &block)
  else
    nil
  end
end