Module: Fig::Command::Action::Role::Update
- Included in:
- Update, UpdateIfMissing
- Defined in:
- lib/fig/command/action/role/update.rb
Instance Method Summary collapse
- #allow_both_descriptor_and_file? ⇒ Boolean
- #apply_base_config? ⇒ Boolean
- #apply_config? ⇒ Boolean
- #descriptor_requirement ⇒ Object
- #execute ⇒ Object
- #load_base_package? ⇒ Boolean
- #modifies_repository? ⇒ Boolean
- #register_base_package? ⇒ Boolean
- #remote_operation_necessary? ⇒ Boolean
- #retrieves_should_happen? ⇒ Boolean
Instance Method Details
#allow_both_descriptor_and_file? ⇒ Boolean
15 16 17 18 |
# File 'lib/fig/command/action/role/update.rb', line 15 def allow_both_descriptor_and_file?() # We don't care, so we let the base action say what it wants. return true end |
#apply_base_config? ⇒ Boolean
36 37 38 |
# File 'lib/fig/command/action/role/update.rb', line 36 def apply_base_config?() return true end |
#apply_config? ⇒ Boolean
32 33 34 |
# File 'lib/fig/command/action/role/update.rb', line 32 def apply_config?() return true end |
#descriptor_requirement ⇒ Object
11 12 13 |
# File 'lib/fig/command/action/role/update.rb', line 11 def descriptor_requirement() return nil end |
#execute ⇒ Object
48 49 50 51 |
# File 'lib/fig/command/action/role/update.rb', line 48 def execute() # Don't do anything. return Fig::Command::Action::EXIT_SUCCESS end |
#load_base_package? ⇒ Boolean
24 25 26 |
# File 'lib/fig/command/action/role/update.rb', line 24 def load_base_package?() return true end |
#modifies_repository? ⇒ Boolean
20 21 22 |
# File 'lib/fig/command/action/role/update.rb', line 20 def modifies_repository?() return true end |
#register_base_package? ⇒ Boolean
28 29 30 |
# File 'lib/fig/command/action/role/update.rb', line 28 def register_base_package?() return true end |
#remote_operation_necessary? ⇒ Boolean
44 45 46 |
# File 'lib/fig/command/action/role/update.rb', line 44 def remote_operation_necessary?() return true end |
#retrieves_should_happen? ⇒ Boolean
40 41 42 |
# File 'lib/fig/command/action/role/update.rb', line 40 def retrieves_should_happen?() return true end |