Class: Fig::Command::Action::HelpLong
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?, #apply_config?, #base_package_can_come_from_descriptor?, #cares_about_asset_options?, #descriptor_requirement, #list_dependencies?, #list_variables?, #load_base_package?, #modifies_repository?, #prepare_repository, #primary_option, #publish?, #register_base_package?, #remote_operation_necessary?, #reset_environment?, #retrieves_should_happen?
Instance Method Details
22
23
24
|
# File 'lib/fig/command/action/help_long.rb', line 22
def configure(options)
@help_message = options.full_help_message
end
|
#execute ⇒ Object
26
27
28
29
30
|
# File 'lib/fig/command/action/help_long.rb', line 26
def execute()
puts @help_message
return EXIT_SUCCESS
end
|
18
19
20
|
# File 'lib/fig/command/action/help_long.rb', line 18
def execute_immediately_after_command_line_parse?
return true
end
|
#options ⇒ Object
14
15
16
|
# File 'lib/fig/command/action/help_long.rb', line 14
def options()
return %w<--help-long>
end
|