Greg Karékinian a32f34b408 Vendor the external cookbooks
Knife-Zero doesn't include Berkshelf support, so vendoring everything in
the repo is convenient again
2019-10-13 19:17:42 +02:00

17 lines
530 B
Ruby

# This code is free software; you can redistribute it and/or modify it under
# the terms of the new BSD License.
#
# Copyright (c) 2013, Sebastian Staudt
module PoiseArchive::Bzip2
autoload :CRC, 'poise_archive/bzip2/crc'
autoload :Constants, 'poise_archive/bzip2/constants'
autoload :Decompressor, 'poise_archive/bzip2/decompressor'
autoload :IO, 'poise_archive/bzip2/io'
autoload :InputData, 'poise_archive/bzip2/input_data'
autoload :OutputData, 'poise_archive/bzip2/output_data'
end