Class: Fig::Command::Action::DumpPackageDefinitionText
Constant Summary
EXIT_FAILURE, EXIT_SUCCESS
Instance Attribute Summary
#execution_context
Instance Method Summary
collapse
#sub_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
34
35
36
|
# File 'lib/fig/command/action/dump_package_definition_text.rb', line 34
def apply_config?()
return nil end
|
#descriptor_requirement ⇒ Object
18
19
20
|
# File 'lib/fig/command/action/dump_package_definition_text.rb', line 18
def descriptor_requirement()
return nil
end
|
#execute ⇒ Object
38
39
40
41
42
43
44
45
46
47
48
49
|
# File 'lib/fig/command/action/dump_package_definition_text.rb', line 38
def execute()
text = @execution_context.base_package.unparsed_text
if text
puts text.strip
return EXIT_SUCCESS
end
$stderr.puts %q<There's no text for the package.>
return EXIT_FAILURE
end
|
#load_base_package? ⇒ Boolean
26
27
28
|
# File 'lib/fig/command/action/dump_package_definition_text.rb', line 26
def load_base_package?()
return true
end
|
#modifies_repository? ⇒ Boolean
22
23
24
|
# File 'lib/fig/command/action/dump_package_definition_text.rb', line 22
def modifies_repository?()
return false
end
|
#options ⇒ Object
14
15
16
|
# File 'lib/fig/command/action/dump_package_definition_text.rb', line 14
def options()
return %w<--dump-package-definition-text>
end
|
#register_base_package? ⇒ Boolean
30
31
32
|
# File 'lib/fig/command/action/dump_package_definition_text.rb', line 30
def register_base_package?()
return nil end
|