Class: Releasy::Packagers::TarGzip

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

Overview

Archives with tar and Gzip formats.

Examples:

Package a particular build and change extension.

Releasy::Project.new do
  name "My App"
  add_build :source do
    add_package :tar_gz do
      extension ".tgz"
    end
  end
end

Package all builds.

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

Constant Summary collapse

TYPE =
:tar_gz
DEFAULT_EXTENSION =
".tar.gz"
FORMAT =
"gzip"

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