Class: Dapp::Dimg::Build::Stage::Instructions
- Defined in:
- lib/dapp/dimg/build/stage/instructions.rb
Direct Known Subclasses
BeforeInstall, BeforeSetup, BuildArtifact, Dapp::Dimg::Build::Stage::Install::Install, Setup::Setup
Instance Attribute Summary
Attributes inherited from Base
#dimg, #next_stage, #prev_stage
Instance Method Summary collapse
Methods inherited from Base
#adding_custom_dir_mounts, #adding_mounts_by_type, #artifact?, #build!, #build_lock!, #config_custom_dir_mounts, #config_mounts_by_type, #dependencies, #dependencies_discard, #dependencies_empty?, #g_a_stage?, #get_ruby2go_state_hash, #git_artifacts_dependencies, #image, #image_add_custom_mounts, #image_add_mounts, #image_add_mounts_labels, #image_add_service_mounts, #initialize, #labels_custom_dir_mounts, #labels_mounts_by_type, #layer_commit, #name, #save_in_cache!, #set_ruby2go_state_hash, #signature
Methods included from Mod::Logging
#ignore_log_commands?, #image_should_be_introspected?, #image_should_be_introspected_after_build?, #image_should_be_introspected_before_build?, #log_build, #log_image_build, #log_image_commands, #log_image_created_at, #log_image_details, #log_image_instructions, #log_image_size, #log_name, #log_name_context, #log_state, #should_not_be_detailed?
Methods included from Helper::Trivia
#check_path?, #check_subpath?, #class_to_lowercase, class_to_lowercase, #delete_file, #ignore_path?, #ignore_path_base, #kwargs, #make_path, #path_checker, #search_file_upward
Methods included from Helper::Sha256
#hashsum, #paths_content_hashsum, #sha256
Constructor Details
This class inherits a constructor from Dapp::Dimg::Build::Stage::Base
Instance Method Details
#builder_checksum ⇒ Object
14 15 16 |
# File 'lib/dapp/dimg/build/stage/instructions.rb', line 14 def builder_checksum dimg.builder.public_send(:"#{name}_checksum") end |
#context ⇒ Object
10 11 12 |
# File 'lib/dapp/dimg/build/stage/instructions.rb', line 10 def context [git_artifacts_dependencies, builder_checksum] end |
#empty? ⇒ Boolean
6 7 8 |
# File 'lib/dapp/dimg/build/stage/instructions.rb', line 6 def empty? !dimg.builder.public_send(:"#{name}?") end |
#prepare_image ⇒ Object
18 19 20 21 22 |
# File 'lib/dapp/dimg/build/stage/instructions.rb', line 18 def prepare_image super do dimg.builder.public_send(name, image) end end |