Class: Releasy::Packagers::Dmg

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

Overview

OS X .dmg format (self-extractor).

Examples:

Package a particular build.

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

Package all builds.

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

Constant Summary collapse

TYPE =
:dmg
DEFAULT_EXTENSION =
".dmg"

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