Class: Dapp::Build::Stage::InfraInstall
- Defined in:
- lib/dapp/build/stage/infra_install.rb
Overview
InfraInstall
Instance Attribute Summary
Attributes inherited from Base
#application, #next_stage, #prev_stage
Instance Method Summary collapse
- #image ⇒ Object
-
#initialize(application, next_stage) ⇒ InfraInstall
constructor
A new instance of InfraInstall.
- #signature ⇒ Object
Methods inherited from Base
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) ⇒ InfraInstall
Returns a new instance of InfraInstall.
6 7 8 9 |
# File 'lib/dapp/build/stage/infra_install.rb', line 6 def initialize(application, next_stage) @prev_stage = From.new(application, self) super end |
Instance Method Details
#image ⇒ Object
15 16 17 18 19 |
# File 'lib/dapp/build/stage/infra_install.rb', line 15 def image super do |image| application.builder.infra_install(image) end end |
#signature ⇒ Object
11 12 13 |
# File 'lib/dapp/build/stage/infra_install.rb', line 11 def signature hashsum [prev_stage.signature, *application.builder.infra_install_checksum] end |