Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 629 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 629 Bytes

ffi_libarchive_preload builds the libarchive library and preloads it for ffi-libarchive use.

To use, require this gem before ffi-libarchive:

require "ffi_libarchive_preload"
require "ffi-libarchive"
Archive::Reader.open_filename("some.tar.gz").each_entry {|e| puts e.pathname}

A Railtie is included so if you include this Gem in a rails project the bundled libarchive will be preloaded for FFI.

See ext/Rakefile for libarchive build options, which have been selected to minimize dependencies and only handles gzip and tar files.