Class: Dapp::Build::Stage::AppInstall
- Defined in:
- lib/dapp/build/stage/app_install.rb
Overview
AppInstall
Instance Attribute Summary
Attributes inherited from Base
#application, #next_stage, #prev_stage
Instance Method Summary collapse
- #image ⇒ Object
-
#initialize(application, next_stage) ⇒ AppInstall
constructor
A new instance of AppInstall.
Methods inherited from Base
#build!, #save_in_cache!, #signature
Methods included from Helper::Trivia
class_to_lowercase, #class_to_lowercase, #delete_file, #kwargs, #to_mb
Methods included from Helper::Sha256
Constructor Details
#initialize(application, next_stage) ⇒ AppInstall
Returns a new instance of AppInstall.
6 7 8 9 |
# File 'lib/dapp/build/stage/app_install.rb', line 6 def initialize(application, next_stage) @prev_stage = Source1.new(application, self) super end |
Instance Method Details
#image ⇒ Object
11 12 13 14 15 |
# File 'lib/dapp/build/stage/app_install.rb', line 11 def image super do |image| application.builder.app_install(image) end end |