class MingleEvents::ZipDirectory::ReusableEntryStream
Public Instance Methods
close()
click to toggle source
# File lib/mingle_events/zip_directory.rb 60 def close 61 # do nothing 62 end
external_encoding()
click to toggle source
# File lib/mingle_events/zip_directory.rb 64 def external_encoding 65 "UTF-8" 66 end
open() { |self| ... }
click to toggle source
# File lib/mingle_events/zip_directory.rb 55 def open(&block) 56 rewind 57 yield(self) 58 end