From d64ce278f01cafc1c3c23aec9bb2394412ad160b Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Thu, 11 Aug 2016 00:30:34 -0400 Subject: update documentation --- Zip/WriterEntry.html | 319 --------------------------------------------------- 1 file changed, 319 deletions(-) delete mode 100644 Zip/WriterEntry.html (limited to 'Zip/WriterEntry.html') diff --git a/Zip/WriterEntry.html b/Zip/WriterEntry.html deleted file mode 100644 index 843b04b..0000000 --- a/Zip/WriterEntry.html +++ /dev/null @@ -1,319 +0,0 @@ - - - - - - - - Zip::WriterEntry - github.com/pablotron/zip-crystal - - - -
- - - - - - -
- -
-

- - class Zip::WriterEntry - -

- - - - - - - -

Overview

- -

Internal class used to store files for Writer instance.

- -

You should not need to instantiate this class directly; it is called -automatically by Writer#add and Writer#add_file.

- - - - - -

Included Modules

- - - - - - - - - - - -

Defined in:

- - - - - -

Constant Summary

- -
- -
- GENERAL_FLAGS = GeneralFlags.flags(FOOTER, EFS) -
- -
-

Default flags for local and central header.

-
- - -
- - - -

Class Method Summary

- - - - -

Instance Method Summary

- - - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - -

Class Method Detail

- -
-
- - def self.new(pos : UInt32, path : String, io : IO, method : CompressionMethod = CompressionMethod::DEFLATE, time : Time = Time.now, comment : String = "") - - # -
- -

Create a new WriterEntry instance.

- -

You should not need to call this method directly; it is called -automatically by Writer#add and Writer#add_file.

- -
-
- -
-
- - - - -

Instance Method Detail

- -
-
- - def to_s(dst_io) : UInt32 - - # -
- -

Write local file entry to IO and return the number of bytes -written.

- -

You should not need to call this method directly; it is called -automatically by Writer#add and Writer#add_file.

- -
-
- -
-
- -
-
- - def write_central(io : IO, version : Version = Version::DEFAULT) : UInt32 - - # -
- -

Write central directory data for this WriterEntry and return the -number of bytes written.

- -

You should not need to call this method directly; it is called -automatically by Writer#close.

- -
-
- -
-
- - - - - -
- - - -- cgit v1.2.3