Greg Karékinian de11c0d691 Set up an instance of Mastodon for Kosmos
Refs #19

Use new application cookbook, update our cookbooks
2017-04-06 21:20:51 +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