Class: Fig::Command::Action::DumpPackageDefinitionParsed

Inherits:
Object
  • Object
show all
Includes:
Fig::Command::Action, Role::HasNoSubAction
Defined in:
lib/fig/command/action/dump_package_definition_parsed.rb

Constant Summary

Constants included from Fig::Command::Action

EXIT_FAILURE, EXIT_SUCCESS

Instance Attribute Summary

Attributes included from Fig::Command::Action

#execution_context

Instance Method Summary collapse

Methods included from Role::HasNoSubAction

#sub_action?

Methods included from Fig::Command::Action

#allow_both_descriptor_and_file?, #apply_base_config?, #base_package_can_come_from_descriptor?, #cares_about_asset_options?, #configure, #execute_immediately_after_command_line_parse?, #list_dependencies?, #list_variables?, #prepare_repository, #primary_option, #publish?, #remote_operation_necessary?, #reset_environment?, #retrieves_should_happen?

Instance Method Details

#apply_config?Boolean

Returns:

  • (Boolean)


33
34
35
# File 'lib/fig/command/action/dump_package_definition_parsed.rb', line 33

def apply_config?()
  return nil # don't care
end

#descriptor_requirementObject



17
18
19
# File 'lib/fig/command/action/dump_package_definition_parsed.rb', line 17

def descriptor_requirement()
  return nil
end

#executeObject



37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/fig/command/action/dump_package_definition_parsed.rb', line 37

def execute()
  if @execution_context.synthetic_package_for_command_line
    # Purposely syntactically incorrect so that nothing attempts to round
    # trip this.
    puts "---- synthetic package for command-line ----\n"
    dump_package @execution_context.synthetic_package_for_command_line

    puts "\n---- base package ----\n"
  end

  dump_package @execution_context.base_package

  return EXIT_SUCCESS
end

#load_base_package?Boolean

Returns:

  • (Boolean)


25
26
27
# File 'lib/fig/command/action/dump_package_definition_parsed.rb', line 25

def load_base_package?()
  return true
end

#modifies_repository?Boolean

Returns:

  • (Boolean)


21
22
23
# File 'lib/fig/command/action/dump_package_definition_parsed.rb', line 21

def modifies_repository?()
  return false
end

#optionsObject



13
14
15
# File 'lib/fig/command/action/dump_package_definition_parsed.rb', line 13

def options()
  return %w<--dump-package-definition-parsed>
end

#register_base_package?Boolean

Returns:

  • (Boolean)


29
30
31
# File 'lib/fig/command/action/dump_package_definition_parsed.rb', line 29

def register_base_package?()
  return nil # don't care
end