exAspArk (Evgeny Li)
- Login: exAspArk
- Email: exaspark@gmail.com
- Registered on: 05/25/2015
- Last sign in: 05/25/2015
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
05/26/2015
-
09:37 AM Ruby Bug #9790: Zlib::GzipReader only decompressed the first of concatenated files
- Hey guys, is there any updates?
I have created a small gem yesterday to make it able to read multiple files https://github.com/exAspArk/multiple_files_gzip_reader
~~~ruby
> MultipleFilesGzipReader.open("3.txt.gz") do |gz|
> ...
#... -
09:33 AM Ruby Bug #11180: Missing lines with Zlib::GzipReader
- Looks like the issue might be similar to https://bugs.ruby-lang.org/issues/9790.
05/25/2015
-
08:17 AM Ruby Bug #11180 (Closed): Missing lines with Zlib::GzipReader
- Hi,
I have a script which is written in Python. It simply appends lines to archive file:
~~~python
#!/usr/bin/env python
import gzip
gstoragefile = 'test.json.gz'
gf = gzip.open(gstoragefile, 'ab')
print >> gf, "foo"
gf...