88 89 90 91 92 93 94 95
# File 'lib/rio/ext/zipfile/wrap.rb', line 88 def open(filename, openMode, *args) zipstream = super case openMode when 'r' then Stream::Input.new(super) when 'w' then Stream::Output.new(super) end end