Class: Releasy::Packagers::TarBzip2

Inherits:
TarPackager show all
Defined in:
lib/releasy/packagers/tar_bzip2.rb

Overview

Archives with tar and Bzip2 formats.

Examples:

Package a particular build and change extension.

Releasy::Project.new do
  name "My App"
  add_build :source do
    add_package :tar_bz2 do
      extension ".tbz"
    end
  end
end

Package all builds.

Releasy::Project.new do
  name "My App"
  add_build :source
  add_build :windows_folder
  add_package :tar_bz2
end

Constant Summary collapse

TYPE =
:tar_bz2
DEFAULT_EXTENSION =
".tar.bz2"
FORMAT =
"bzip2"

Constants inherited from Packager

Packager::MD5_READ_SIZE

Constants included from Mixins::Log

Mixins::Log::DEFAULT_LOG_LEVEL, Mixins::Log::LOG_LEVELS

Instance Attribute Summary

Attributes inherited from Packager

#extension, #project

Method Summary

Methods inherited from Packager

#initialize, #type

Methods included from Mixins::Log

log_level, log_level=

Constructor Details

This class inherits a constructor from Releasy::Packagers::Packager