Class: Fig::Command::Action::Get

Inherits:
Object
  • Object
show all
Includes:
Fig::Command::Action, Role::HasNoSubAction
Defined in:
lib/fig/command/action/get.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?, #base_package_can_come_from_descriptor?, #cares_about_asset_options?, #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_base_config?Boolean

Returns:

  • (Boolean)


36
37
38
# File 'lib/fig/command/action/get.rb', line 36

def apply_base_config?()
  return true
end

#apply_config?Boolean

Returns:

  • (Boolean)


32
33
34
# File 'lib/fig/command/action/get.rb', line 32

def apply_config?()
  return true
end

#configure(options) ⇒ Object



40
41
42
# File 'lib/fig/command/action/get.rb', line 40

def configure(options)
  @variable = options.variable_to_get
end

#descriptor_requirementObject



16
17
18
# File 'lib/fig/command/action/get.rb', line 16

def descriptor_requirement()
  return nil
end

#executeObject



44
45
46
47
48
49
50
51
# File 'lib/fig/command/action/get.rb', line 44

def execute()
  # Ruby v1.8 emits "nil" for nil, whereas ruby v1.9 emits the empty
  # string, so, for consistency, we need to ensure that we always emit the
  # empty string.
  puts @execution_context.environment[@variable] || ''

  return EXIT_SUCCESS
end

#load_base_package?Boolean

Returns:

  • (Boolean)


24
25
26
# File 'lib/fig/command/action/get.rb', line 24

def load_base_package?()
  return true
end

#modifies_repository?Boolean

Returns:

  • (Boolean)


20
21
22
# File 'lib/fig/command/action/get.rb', line 20

def modifies_repository?()
  return false
end

#optionsObject



12
13
14
# File 'lib/fig/command/action/get.rb', line 12

def options()
  return %w<--get>
end

#register_base_package?Boolean

Returns:

  • (Boolean)


28
29
30
# File 'lib/fig/command/action/get.rb', line 28

def register_base_package?()
  return true
end