module RunnerActions

Public Instance Methods

all() click to toggle source
# File lib/tdl/runner/runner_action.rb, line 20
def all
  [get_new_round_description, deploy_to_production]
end
deploy_to_production() click to toggle source
# File lib/tdl/runner/runner_action.rb, line 16
def deploy_to_production
    RunnerAction.new('deploy', 'deploy_to_production')
end
get_new_round_description() click to toggle source
# File lib/tdl/runner/runner_action.rb, line 12
def get_new_round_description
  RunnerAction.new('new', 'get_new_round_description')
end