class Zip::ExtraField::Zip64Placeholder

placeholder to reserve space for a Zip64 extra information record, for the local file header only, that we won't know if we'll need until after we write the file data

Constants

HEADER_ID

Public Class Methods

new(_binstr = nil) click to toggle source
# File lib/zip/extra_field/zip64_placeholder.rb, line 9
def initialize(_binstr = nil)
end

Public Instance Methods

pack_for_local() click to toggle source
# File lib/zip/extra_field/zip64_placeholder.rb, line 12
def pack_for_local
  "\x00" * 16
end