Missing docstring.

Missing docstring for TaskInfo. Check Documenter's build log for details.

Missing docstring.

Missing docstring for TaskResult. Check Documenter's build log for details.

Genie.Toolbox.tasksFunction
tasks(; filter_type_name = Symbol()) :: Vector{TaskInfo}

Returns a vector of all registered Genie tasks.

Missing docstring.

Missing docstring for VoidTaskResult. Check Documenter's build log for details.

Genie.Toolbox.validtasknameFunction
validtaskname(task_name::String) :: String

Attempts to convert a potentially invalid (partial) task_name into a valid one.

Genie.Toolbox.taskdocsFunction
task_docs(module_name::Module) :: String

Retrieves the docstring of the runtask method and returns it as a string.

Genie.Toolbox.loadtasksFunction
tasks(; filter_type_name = Symbol()) :: Vector{TaskInfo}

Returns a vector of all registered Genie tasks.

newKeyword
new

Special function available to inner constructors which created a new object of the type. See the manual section on Inner Constructor Methods for more information.

source
Genie.Toolbox.taskfilenameFunction
task_file_name(cmd_args::Dict{String,Any}, config::Settings) :: String

Computes the name of a Genie task based on the command line input.

Genie.Toolbox.taskmodulenameFunction
task_module_name(underscored_task_name::String) :: String

Computes the name of a Genie task based on the command line input.

Genie.Toolbox.isvalidtask!Function
isvalidtask!(parsed_args::Dict{String,Any}) :: Dict{String,Any}

Checks if the name of the task passed as the command line arg is valid task identifier – if not, attempts to address it, by appending the TASKSUFFIX suffix. Returns the potentially modified `parsedargsDict`.