Thilo.Opaterny (Thilo Opaterny)
- Login: Thilo.Opaterny
- Email: Thilo.Opaterny@googlemail.com
- Registered on: 04/28/2013
- Last sign in: 05/22/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
04/28/2013
-
05:58 AM Ruby Bug #8340: rubyzip does not save time of zipped files
- Another try to fix this is to add
def kind_of?( arg )
super( arg ) || __getobj__.kind_of?( arg )
end
to c:\win\Ruby200x64\lib\ruby\gems\2.0.0\gems\rubyzip-0.9.9\lib\zip\zip_streamable_stream.rb -
05:36 AM Ruby Bug #8340 (Third Party's Issue): rubyzip does not save time of zipped files
- I wrote a little test
----------------------
require 'zip/zip'
zipName = "test.zip"
zipFile = Zip::ZipFile.open( zipName, Zip::ZipFile::CREATE )
file = File.open( "save.rb", "rb")
puts time = Zip::DOSTime.at( file.mtime )
zipE...