Autolab
Autolab copied to clipboard
prepare for rubyzip transition
Seen on bundle install. Looks like autolab will be affected (Archive.create_zip)
RubyZip 3.0 is coming!
The public API of some Rubyzip classes has been modernized to use named parameters for optional arguments. Please check your usage of the following classes:
Zip::FileZip::EntryZip::InputStreamZip::OutputStreamPlease ensure that your Gemfiles and .gemspecs are suitably restrictive to avoid an unexpected breakage when 3.0 is released (e.g. ~> 2.3.0).
Change required should be Zip::Entry.new(zos, "#{File.basename(filepath)}", nil, nil, nil, nil, nil, nil, ctimestamp) --> Zip::Entry.new(zos, "#{File.basename(filepath)}", time: ctimestamp)