Method: Zip::ZipFile#read
- Defined in:
- lib/pik/contrib/zip/zip.rb
#read(entry) ⇒ Object
Returns a string containing the contents of the specified entry
1433 1434 1435 |
# File 'lib/pik/contrib/zip/zip.rb', line 1433 def read(entry) get_input_stream(entry) { |is| is.read } end |