close()
public
Closes the GzipFile object. This method calls close method of the associated IO object. Returns the associated IO object.
Show source
static VALUE
rb_gzfile_close(VALUE obj)
{
struct gzfile *gz = get_gzfile(obj);
VALUE io;
io = gz->io;
gzfile_close(gz, 1);
return io;
}