From a63cfd89ab6070e8c75b29535a615679552da764 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Sat, 13 Aug 2016 14:31:15 -0400 Subject: update documentation --- Zip/Writers/FileEntry.html | 50 ++++++++++++++++++++++++++++++++-------------- 1 file changed, 35 insertions(+), 15 deletions(-) (limited to 'Zip/Writers/FileEntry.html') diff --git a/Zip/Writers/FileEntry.html b/Zip/Writers/FileEntry.html index b703720..8d732b9 100644 --- a/Zip/Writers/FileEntry.html +++ b/Zip/Writers/FileEntry.html @@ -50,9 +50,24 @@ -
  • +
  • Extra + + +
  • @@ -136,8 +151,8 @@

    Internal class used to store files for Writer instance.

    -

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

    +

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

    @@ -188,7 +203,7 @@ automatically by
  • - .new(pos : UInt32, path : String, io : IO, method : CompressionMethod = CompressionMethod::DEFLATE, time : Time = Time.now, comment : String = "") + .new(pos : UInt64, path : String, io : IO, method : CompressionMethod = CompressionMethod::DEFLATE, time : Time = Time.now, comment : String = "", zip64 : Bool = false)

    Create a new FileWriterEntry instance.

    @@ -223,8 +238,8 @@ automatically by Zip::Writers::WriterEntry - - to_s(dst_io) : UInt32 + + to_s(dst_io) : UInt64 to_s, @@ -238,9 +253,14 @@ automatically by - write_footer(io : IO, crc : UInt32, src_len : UInt32, dst_len : UInt32) : UInt32 - write_footer + + write_footer(io : IO, crc : UInt32, src_len : UInt64, dst_len : UInt64, zip64 : Bool) : UInt32 + write_footer, + + + + zip64? : Bool + zip64? @@ -250,8 +270,8 @@ automatically by Zip::Writers::WriterEntry - - new(pos : UInt32, path : String, method : CompressionMethod = CompressionMethod::DEFLATE, time : Time = Time.now, comment : String = "", flags : GeneralFlags = GeneralFlags.flags, external : UInt32 = 0_u32) + + new(pos : UInt64, path : String, method : CompressionMethod = CompressionMethod::DEFLATE, time : Time = Time.now, comment : String = "", flags : GeneralFlags = GeneralFlags.flags, external : UInt32 = 0_u32, zip64 : Bool = false) new @@ -284,18 +304,18 @@ automatically by +
    - def self.new(pos : UInt32, path : String, io : IO, method : CompressionMethod = CompressionMethod::DEFLATE, time : Time = Time.now, comment : String = "") + def self.new(pos : UInt64, path : String, io : IO, method : CompressionMethod = CompressionMethod::DEFLATE, time : Time = Time.now, comment : String = "", zip64 : Bool = false) - # + #

    Create a new FileWriterEntry instance.

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

    +automatically by Writer#add and Writer#add_file.


    -- cgit v1.2.3