Sha256: 8957e8de35182ea7456b486fe041971d65de7ea3b0b62a56df7bb2b426604a07
Contents?: true
Size: 852 Bytes
Versions: 15
Compression:
Stored size: 852 Bytes
Contents
# coding: utf-8 require 'fig/command/action' module Fig; end class Fig::Command; end module Fig::Command::Action; end module Fig::Command::Action::Role; end module Fig::Command::Action::Role::Update def descriptor_requirement() return nil end def allow_both_descriptor_and_file?() # We don't care, so we let the base action say what it wants. return true end def modifies_repository?() return true end def load_base_package?() return true end def register_base_package?() return true end def apply_config?() return true end def apply_base_config?() return true end def retrieves_should_happen?() return true end def remote_operation_necessary?() return true end def execute() # Don't do anything. return Fig::Command::Action::EXIT_SUCCESS end end
Version data entries
15 entries across 15 versions & 1 rubygems