Class: Releasy::Packagers::Zip

Inherits:
Packager
  • Object
show all
Defined in:
lib/releasy/packagers/zip.rb

Overview

Archives with zip format. This isn’t efficient, but can be decompressed on Windows Vista or later without requiring a 3rd party tool.

Examples:

Package a particular build.

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

Package all builds.

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

Constant Summary collapse

TYPE =
:zip
DEFAULT_EXTENSION =
".zip"

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