Add the following code to your project's shard.yml under:
dependencies
to use in production
- OR -
development_dependencies
to use in development
Minimalistic libtar-based library that can extract tar archives from a file on disk or from a memory buffer.
Make sure libtar is available on your system.
Add the dependency to your shard.yml
:
dependencies:
untar:
github: vivus-ignis/crystal-untar
Run shards install
There are two ways to use this library. Obviously, you can extract files from a tar archive on disk:
require "untar"
Dir.mkdir "/tmp/archive"
Untar.extract("archive.tar", "/tmp/archive")
The other option is to extract files from an archive that is loaded in a memory buffer. Consider the example below:
require "http/client"
require "gzip"
require "untar"
response = HTTP::Client.get "https://nginx.org/download/nginx-1.15.9.tar.gz"
zipped = IO::Memory.new(response.body)
unzipped = Gzip::Reader.open(zipped) { |gzip| gzip.gets_to_end }
tarball = IO::Memory.new(unzipped)
Dir.mkdir "/tmp/nginx"
Untar.extract(tarball, "/tmp/nginx")
Notice that the same Untar.extract
method is used to unpack a
tarball on disk and in memory.
For an in-memory archive there is an additional option to only extract a certain file. Let's pretend we want to fetch nginx changelog:
require "http/client"
require "gzip"
require "untar"
response = HTTP::Client.get "https://nginx.org/download/nginx-1.15.9.tar.gz"
zipped = IO::Memory.new(response.body)
unzipped = Gzip::Reader.open(zipped) { |gzip| gzip.gets_to_end }
tarball = IO::Memory.new(unzipped)
changelog = Untar.extract_file(tarball, "nginx-1.15.9/CHANGES")
puts changelog
On errors Untar
raises an UntarException
.
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)