diff --git a/DESCRIPTION b/DESCRIPTION index a2702763..f08607e4 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -117,4 +117,4 @@ Language: en-US VignetteBuilder: knitr Config/testthat/edition: 3 Roxygen: list(markdown = TRUE) -RoxygenNote: 7.3.0 +RoxygenNote: 7.3.1 diff --git a/R/tar_make.R b/R/tar_make.R index ef47921e..01fc3671 100644 --- a/R/tar_make.R +++ b/R/tar_make.R @@ -99,7 +99,7 @@ #' @param as_job `TRUE` to run as an RStudio IDE / Posit Workbench job, #' `FALSE` to run as a `callr` process in the main R session #' (depending on the `callr_function` argument). -#' If `as_job_` is `TRUE`, then the `rstudioapi` package must be installed. +#' If `as_job` is `TRUE`, then the `rstudioapi` package must be installed. #' @examples #' if (identical(Sys.getenv("TAR_EXAMPLES"), "true")) { # for CRAN #' tar_dir({ # tar_dir() runs code from a temp dir for CRAN. @@ -263,7 +263,29 @@ tar_make_inner <- function( # Tested in tests/interactive/test-job.R. # nocov start tar_make_as_job <- function(call) { - tar_assert_package("rstudioapi") + tar_assert_package( + "rstudioapi", + msg = paste( + "The 'rstudioapi' package is required to run tar_make()", + "with as_job = TRUE. Either install the package or set as_job = FALSE.", + "You can set as_job = FALSE either manually", + "in tar_make() or persistently", + "for the project in _targets.yaml", + "using tar_config_set(as_job = FALSE)." + ) + ) + tar_assert_true( + rstudioapi::isAvailable(), + msg = paste( + "tar_make() can only run with as_job = TRUE inside the RStudio IDE", + "or Posit Workbench. If you are running the pipeline in a terminal", + "or a different IDE, then please set as_job = FALSE.", + "You can set as_job = FALSE either manually", + "in tar_make() or persistently", + "for the project in _targets.yaml", + "using tar_config_set(as_job = FALSE)." + ) + ) args <- as.list(call)[-1L] args$as_job <- FALSE args <- paste(names(args), "=", map_chr(args, tar_deparse_safe)) diff --git a/R/utils_assert.R b/R/utils_assert.R index d3644721..4e90a124 100644 --- a/R/utils_assert.R +++ b/R/utils_assert.R @@ -472,11 +472,11 @@ tar_assert_nzchar <- function(x, msg = NULL) { #' @export #' @rdname tar_assert -tar_assert_package <- function(package) { +tar_assert_package <- function(package, msg = NULL) { tryCatch( rlang::check_installed(package), error = function(e) { - tar_throw_validate(conditionMessage(e)) + tar_throw_validate(msg %|||% conditionMessage(e)) } ) } diff --git a/man/tar_active.Rd b/man/tar_active.Rd index e595395b..dade38ec 100644 --- a/man/tar_active.Rd +++ b/man/tar_active.Rd @@ -37,11 +37,11 @@ Other utilities: \code{\link{tar_envir}()}, \code{\link{tar_group}()}, \code{\link{tar_name}()}, -\code{\link{tar_path_script_support}()}, +\code{\link{tar_path}()}, \code{\link{tar_path_script}()}, +\code{\link{tar_path_script_support}()}, \code{\link{tar_path_store}()}, \code{\link{tar_path_target}()}, -\code{\link{tar_path}()}, \code{\link{tar_source}()}, \code{\link{tar_store}()} } diff --git a/man/tar_assert.Rd b/man/tar_assert.Rd index 92f663c4..07e17196 100644 --- a/man/tar_assert.Rd +++ b/man/tar_assert.Rd @@ -109,7 +109,7 @@ tar_assert_not_expr(x, msg = NULL) tar_assert_nzchar(x, msg = NULL) -tar_assert_package(package) +tar_assert_package(package, msg = NULL) tar_assert_path(path, msg = NULL) diff --git a/man/tar_backoff.Rd b/man/tar_backoff.Rd index 84c27952..9c584dce 100644 --- a/man/tar_backoff.Rd +++ b/man/tar_backoff.Rd @@ -64,11 +64,11 @@ Other utilities: \code{\link{tar_envir}()}, \code{\link{tar_group}()}, \code{\link{tar_name}()}, -\code{\link{tar_path_script_support}()}, +\code{\link{tar_path}()}, \code{\link{tar_path_script}()}, +\code{\link{tar_path_script_support}()}, \code{\link{tar_path_store}()}, \code{\link{tar_path_target}()}, -\code{\link{tar_path}()}, \code{\link{tar_source}()}, \code{\link{tar_store}()} } diff --git a/man/tar_branch_index.Rd b/man/tar_branch_index.Rd index 82b8f3d9..1bbd43f8 100644 --- a/man/tar_branch_index.Rd +++ b/man/tar_branch_index.Rd @@ -47,8 +47,8 @@ tar_branch_index(names) # c(2, 3, 2) } \seealso{ Other branching: -\code{\link{tar_branch_names_raw}()}, \code{\link{tar_branch_names}()}, +\code{\link{tar_branch_names_raw}()}, \code{\link{tar_branches}()}, \code{\link{tar_pattern}()} } diff --git a/man/tar_branches.Rd b/man/tar_branches.Rd index e5591219..37756773 100644 --- a/man/tar_branches.Rd +++ b/man/tar_branches.Rd @@ -63,8 +63,8 @@ tar_branches(dynamic, pattern = cross(z, map(x, y))) \seealso{ Other branching: \code{\link{tar_branch_index}()}, -\code{\link{tar_branch_names_raw}()}, \code{\link{tar_branch_names}()}, +\code{\link{tar_branch_names_raw}()}, \code{\link{tar_pattern}()} } \concept{branching} diff --git a/man/tar_call.Rd b/man/tar_call.Rd index 5486ff85..98299f33 100644 --- a/man/tar_call.Rd +++ b/man/tar_call.Rd @@ -41,11 +41,11 @@ Other utilities: \code{\link{tar_envir}()}, \code{\link{tar_group}()}, \code{\link{tar_name}()}, -\code{\link{tar_path_script_support}()}, +\code{\link{tar_path}()}, \code{\link{tar_path_script}()}, +\code{\link{tar_path_script_support}()}, \code{\link{tar_path_store}()}, \code{\link{tar_path_target}()}, -\code{\link{tar_path}()}, \code{\link{tar_source}()}, \code{\link{tar_store}()} } diff --git a/man/tar_cancel.Rd b/man/tar_cancel.Rd index 30458f24..d6efb07f 100644 --- a/man/tar_cancel.Rd +++ b/man/tar_cancel.Rd @@ -34,11 +34,11 @@ Other utilities: \code{\link{tar_envir}()}, \code{\link{tar_group}()}, \code{\link{tar_name}()}, -\code{\link{tar_path_script_support}()}, +\code{\link{tar_path}()}, \code{\link{tar_path_script}()}, +\code{\link{tar_path_script_support}()}, \code{\link{tar_path_store}()}, \code{\link{tar_path_target}()}, -\code{\link{tar_path}()}, \code{\link{tar_source}()}, \code{\link{tar_store}()} } diff --git a/man/tar_canceled.Rd b/man/tar_canceled.Rd index e0b5576b..7cd5832d 100644 --- a/man/tar_canceled.Rd +++ b/man/tar_canceled.Rd @@ -48,12 +48,12 @@ Other progress: \code{\link{tar_dispatched}()}, \code{\link{tar_errored}()}, \code{\link{tar_poll}()}, +\code{\link{tar_progress}()}, \code{\link{tar_progress_branches}()}, \code{\link{tar_progress_summary}()}, -\code{\link{tar_progress}()}, \code{\link{tar_skipped}()}, +\code{\link{tar_watch}()}, \code{\link{tar_watch_server}()}, -\code{\link{tar_watch_ui}()}, -\code{\link{tar_watch}()} +\code{\link{tar_watch_ui}()} } \concept{progress} diff --git a/man/tar_completed.Rd b/man/tar_completed.Rd index 65c0cf90..1b60e2b5 100644 --- a/man/tar_completed.Rd +++ b/man/tar_completed.Rd @@ -48,12 +48,12 @@ Other progress: \code{\link{tar_dispatched}()}, \code{\link{tar_errored}()}, \code{\link{tar_poll}()}, +\code{\link{tar_progress}()}, \code{\link{tar_progress_branches}()}, \code{\link{tar_progress_summary}()}, -\code{\link{tar_progress}()}, \code{\link{tar_skipped}()}, +\code{\link{tar_watch}()}, \code{\link{tar_watch_server}()}, -\code{\link{tar_watch_ui}()}, -\code{\link{tar_watch}()} +\code{\link{tar_watch_ui}()} } \concept{progress} diff --git a/man/tar_crew.Rd b/man/tar_crew.Rd index 4b27e912..ad3d0841 100644 --- a/man/tar_crew.Rd +++ b/man/tar_crew.Rd @@ -76,13 +76,13 @@ tar_process(pid) } \seealso{ Other data: +\code{\link{tar_load}()}, \code{\link{tar_load_everything}()}, \code{\link{tar_load_raw}()}, -\code{\link{tar_load}()}, \code{\link{tar_objects}()}, \code{\link{tar_pid}()}, \code{\link{tar_process}()}, -\code{\link{tar_read_raw}()}, -\code{\link{tar_read}()} +\code{\link{tar_read}()}, +\code{\link{tar_read_raw}()} } \concept{data} diff --git a/man/tar_cue.Rd b/man/tar_cue.Rd index 17d89025..cde21c4c 100644 --- a/man/tar_cue.Rd +++ b/man/tar_cue.Rd @@ -128,7 +128,7 @@ x <- tar_target(x, download_data(), cue = tar_cue(mode = "always")) \seealso{ Other targets: \code{\link{tar_format}()}, -\code{\link{tar_target_raw}()}, -\code{\link{tar_target}()} +\code{\link{tar_target}()}, +\code{\link{tar_target_raw}()} } \concept{targets} diff --git a/man/tar_definition.Rd b/man/tar_definition.Rd index 9233ea1a..3838a45f 100644 --- a/man/tar_definition.Rd +++ b/man/tar_definition.Rd @@ -70,11 +70,11 @@ Other utilities: \code{\link{tar_envir}()}, \code{\link{tar_group}()}, \code{\link{tar_name}()}, -\code{\link{tar_path_script_support}()}, +\code{\link{tar_path}()}, \code{\link{tar_path_script}()}, +\code{\link{tar_path_script_support}()}, \code{\link{tar_path_store}()}, \code{\link{tar_path_target}()}, -\code{\link{tar_path}()}, \code{\link{tar_source}()}, \code{\link{tar_store}()} } diff --git a/man/tar_delete.Rd b/man/tar_delete.Rd index 4ea2e4ad..c8e933a8 100644 --- a/man/tar_delete.Rd +++ b/man/tar_delete.Rd @@ -142,8 +142,8 @@ tar_make() # y1 and y2 rerun but return the same values, so z is up to date. Other clean: \code{\link{tar_destroy}()}, \code{\link{tar_invalidate}()}, -\code{\link{tar_prune_list}()}, \code{\link{tar_prune}()}, +\code{\link{tar_prune_list}()}, \code{\link{tar_unversion}()} } \concept{clean} diff --git a/man/tar_destroy.Rd b/man/tar_destroy.Rd index 55c8f3da..898f60b5 100644 --- a/man/tar_destroy.Rd +++ b/man/tar_destroy.Rd @@ -183,8 +183,8 @@ print(file.exists("_targets")) # Should be FALSE. Other clean: \code{\link{tar_delete}()}, \code{\link{tar_invalidate}()}, -\code{\link{tar_prune_list}()}, \code{\link{tar_prune}()}, +\code{\link{tar_prune_list}()}, \code{\link{tar_unversion}()} } \concept{clean} diff --git a/man/tar_dispatched.Rd b/man/tar_dispatched.Rd index 1a3cc081..94adb2f5 100644 --- a/man/tar_dispatched.Rd +++ b/man/tar_dispatched.Rd @@ -54,12 +54,12 @@ Other progress: \code{\link{tar_completed}()}, \code{\link{tar_errored}()}, \code{\link{tar_poll}()}, +\code{\link{tar_progress}()}, \code{\link{tar_progress_branches}()}, \code{\link{tar_progress_summary}()}, -\code{\link{tar_progress}()}, \code{\link{tar_skipped}()}, +\code{\link{tar_watch}()}, \code{\link{tar_watch_server}()}, -\code{\link{tar_watch_ui}()}, -\code{\link{tar_watch}()} +\code{\link{tar_watch_ui}()} } \concept{progress} diff --git a/man/tar_edit.Rd b/man/tar_edit.Rd index b584fa29..891526e1 100644 --- a/man/tar_edit.Rd +++ b/man/tar_edit.Rd @@ -30,8 +30,8 @@ can be configured with \code{\link[=tar_config_set]{tar_config_set()}} \seealso{ Other scripts: \code{\link{tar_github_actions}()}, -\code{\link{tar_helper_raw}()}, \code{\link{tar_helper}()}, +\code{\link{tar_helper_raw}()}, \code{\link{tar_renv}()}, \code{\link{tar_script}()} } diff --git a/man/tar_envir.Rd b/man/tar_envir.Rd index 272993db..5080917f 100644 --- a/man/tar_envir.Rd +++ b/man/tar_envir.Rd @@ -51,11 +51,11 @@ Other utilities: \code{\link{tar_definition}()}, \code{\link{tar_group}()}, \code{\link{tar_name}()}, -\code{\link{tar_path_script_support}()}, +\code{\link{tar_path}()}, \code{\link{tar_path_script}()}, +\code{\link{tar_path_script_support}()}, \code{\link{tar_path_store}()}, \code{\link{tar_path_target}()}, -\code{\link{tar_path}()}, \code{\link{tar_source}()}, \code{\link{tar_store}()} } diff --git a/man/tar_errored.Rd b/man/tar_errored.Rd index bd1a1ec5..e11bfc7e 100644 --- a/man/tar_errored.Rd +++ b/man/tar_errored.Rd @@ -74,12 +74,12 @@ Other progress: \code{\link{tar_completed}()}, \code{\link{tar_dispatched}()}, \code{\link{tar_poll}()}, +\code{\link{tar_progress}()}, \code{\link{tar_progress_branches}()}, \code{\link{tar_progress_summary}()}, -\code{\link{tar_progress}()}, \code{\link{tar_skipped}()}, +\code{\link{tar_watch}()}, \code{\link{tar_watch_server}()}, -\code{\link{tar_watch_ui}()}, -\code{\link{tar_watch}()} +\code{\link{tar_watch_ui}()} } \concept{progress} diff --git a/man/tar_format.Rd b/man/tar_format.Rd index 396d7ed4..c38643c3 100644 --- a/man/tar_format.Rd +++ b/man/tar_format.Rd @@ -193,7 +193,7 @@ tar_target( \seealso{ Other targets: \code{\link{tar_cue}()}, -\code{\link{tar_target_raw}()}, -\code{\link{tar_target}()} +\code{\link{tar_target}()}, +\code{\link{tar_target_raw}()} } \concept{targets} diff --git a/man/tar_github_actions.Rd b/man/tar_github_actions.Rd index c73de327..ccaf3080 100644 --- a/man/tar_github_actions.Rd +++ b/man/tar_github_actions.Rd @@ -58,8 +58,8 @@ tar_github_actions(tempfile()) \seealso{ Other scripts: \code{\link{tar_edit}()}, -\code{\link{tar_helper_raw}()}, \code{\link{tar_helper}()}, +\code{\link{tar_helper_raw}()}, \code{\link{tar_renv}()}, \code{\link{tar_script}()} } diff --git a/man/tar_group.Rd b/man/tar_group.Rd index f77c57a9..bd822bcc 100644 --- a/man/tar_group.Rd +++ b/man/tar_group.Rd @@ -82,11 +82,11 @@ Other utilities: \code{\link{tar_definition}()}, \code{\link{tar_envir}()}, \code{\link{tar_name}()}, -\code{\link{tar_path_script_support}()}, +\code{\link{tar_path}()}, \code{\link{tar_path_script}()}, +\code{\link{tar_path_script_support}()}, \code{\link{tar_path_store}()}, \code{\link{tar_path_target}()}, -\code{\link{tar_path}()}, \code{\link{tar_source}()}, \code{\link{tar_store}()} } diff --git a/man/tar_invalidate.Rd b/man/tar_invalidate.Rd index a2e819f7..24afc756 100644 --- a/man/tar_invalidate.Rd +++ b/man/tar_invalidate.Rd @@ -86,8 +86,8 @@ tar_make() # y1 and y2 rerun but return same values, so z is up to date. Other clean: \code{\link{tar_delete}()}, \code{\link{tar_destroy}()}, -\code{\link{tar_prune_list}()}, \code{\link{tar_prune}()}, +\code{\link{tar_prune_list}()}, \code{\link{tar_unversion}()} } \concept{clean} diff --git a/man/tar_load.Rd b/man/tar_load.Rd index 66cdee40..12c501e0 100644 --- a/man/tar_load.Rd +++ b/man/tar_load.Rd @@ -151,7 +151,7 @@ Other data: \code{\link{tar_objects}()}, \code{\link{tar_pid}()}, \code{\link{tar_process}()}, -\code{\link{tar_read_raw}()}, -\code{\link{tar_read}()} +\code{\link{tar_read}()}, +\code{\link{tar_read_raw}()} } \concept{data} diff --git a/man/tar_load_everything.Rd b/man/tar_load_everything.Rd index 5cc6f27a..a584de8a 100644 --- a/man/tar_load_everything.Rd +++ b/man/tar_load_everything.Rd @@ -74,12 +74,12 @@ ls() # Has "y1", "y2", and "z". \seealso{ Other data: \code{\link{tar_crew}()}, -\code{\link{tar_load_raw}()}, \code{\link{tar_load}()}, +\code{\link{tar_load_raw}()}, \code{\link{tar_objects}()}, \code{\link{tar_pid}()}, \code{\link{tar_process}()}, -\code{\link{tar_read_raw}()}, -\code{\link{tar_read}()} +\code{\link{tar_read}()}, +\code{\link{tar_read_raw}()} } \concept{data} diff --git a/man/tar_load_globals.Rd b/man/tar_load_globals.Rd index e30936f7..7010e7d4 100644 --- a/man/tar_load_globals.Rd +++ b/man/tar_load_globals.Rd @@ -89,7 +89,7 @@ print("callr" \%in\% (.packages())) \seealso{ Other debug: \code{\link{tar_traceback}()}, -\code{\link{tar_workspaces}()}, -\code{\link{tar_workspace}()} +\code{\link{tar_workspace}()}, +\code{\link{tar_workspaces}()} } \concept{debug} diff --git a/man/tar_load_raw.Rd b/man/tar_load_raw.Rd index 7cbf88b8..5ff6da38 100644 --- a/man/tar_load_raw.Rd +++ b/man/tar_load_raw.Rd @@ -140,12 +140,12 @@ y2 \seealso{ Other data: \code{\link{tar_crew}()}, -\code{\link{tar_load_everything}()}, \code{\link{tar_load}()}, +\code{\link{tar_load_everything}()}, \code{\link{tar_objects}()}, \code{\link{tar_pid}()}, \code{\link{tar_process}()}, -\code{\link{tar_read_raw}()}, -\code{\link{tar_read}()} +\code{\link{tar_read}()}, +\code{\link{tar_read_raw}()} } \concept{data} diff --git a/man/tar_make.Rd b/man/tar_make.Rd index ce1313c3..0c212bc9 100644 --- a/man/tar_make.Rd +++ b/man/tar_make.Rd @@ -169,7 +169,7 @@ and worker processes.} \item{as_job}{\code{TRUE} to run as an RStudio IDE / Posit Workbench job, \code{FALSE} to run as a \code{callr} process in the main R session (depending on the \code{callr_function} argument). -If \code{as_job_} is \code{TRUE}, then the \code{rstudioapi} package must be installed.} +If \code{as_job} is \code{TRUE}, then the \code{rstudioapi} package must be installed.} } \value{ \code{NULL} except if \code{callr_function = callr::r_bg()}, in which case diff --git a/man/tar_make_clustermq.Rd b/man/tar_make_clustermq.Rd index 1bdd30ed..757f8419 100644 --- a/man/tar_make_clustermq.Rd +++ b/man/tar_make_clustermq.Rd @@ -220,7 +220,7 @@ tar_make_clustermq() } \seealso{ Other pipeline: -\code{\link{tar_make_future}()}, -\code{\link{tar_make}()} +\code{\link{tar_make}()}, +\code{\link{tar_make_future}()} } \concept{pipeline} diff --git a/man/tar_make_future.Rd b/man/tar_make_future.Rd index 65b2b9f8..9eef5499 100644 --- a/man/tar_make_future.Rd +++ b/man/tar_make_future.Rd @@ -208,7 +208,7 @@ tar_make_future() } \seealso{ Other pipeline: -\code{\link{tar_make_clustermq}()}, -\code{\link{tar_make}()} +\code{\link{tar_make}()}, +\code{\link{tar_make_clustermq}()} } \concept{pipeline} diff --git a/man/tar_manifest.Rd b/man/tar_manifest.Rd index d888a24a..2609dc86 100644 --- a/man/tar_manifest.Rd +++ b/man/tar_manifest.Rd @@ -156,8 +156,8 @@ tar_manifest(fields = starts_with("cue")) } \seealso{ Other inspect: -\code{\link{tar_deps_raw}()}, \code{\link{tar_deps}()}, +\code{\link{tar_deps_raw}()}, \code{\link{tar_network}()}, \code{\link{tar_outdated}()}, \code{\link{tar_sitrep}()}, diff --git a/man/tar_meta_delete.Rd b/man/tar_meta_delete.Rd index 3d6fabfb..5a81db47 100644 --- a/man/tar_meta_delete.Rd +++ b/man/tar_meta_delete.Rd @@ -71,9 +71,9 @@ tar_meta_delete() } \seealso{ Other metadata: +\code{\link{tar_meta}()}, \code{\link{tar_meta_download}()}, \code{\link{tar_meta_sync}()}, -\code{\link{tar_meta_upload}()}, -\code{\link{tar_meta}()} +\code{\link{tar_meta_upload}()} } \concept{metadata} diff --git a/man/tar_meta_download.Rd b/man/tar_meta_download.Rd index e8028bff..8cc19c86 100644 --- a/man/tar_meta_download.Rd +++ b/man/tar_meta_download.Rd @@ -72,9 +72,9 @@ tar_meta_download() } \seealso{ Other metadata: +\code{\link{tar_meta}()}, \code{\link{tar_meta_delete}()}, \code{\link{tar_meta_sync}()}, -\code{\link{tar_meta_upload}()}, -\code{\link{tar_meta}()} +\code{\link{tar_meta_upload}()} } \concept{metadata} diff --git a/man/tar_meta_sync.Rd b/man/tar_meta_sync.Rd index 4adaaa4c..43948e6b 100644 --- a/man/tar_meta_sync.Rd +++ b/man/tar_meta_sync.Rd @@ -83,9 +83,9 @@ tar_meta_sync() } \seealso{ Other metadata: +\code{\link{tar_meta}()}, \code{\link{tar_meta_delete}()}, \code{\link{tar_meta_download}()}, -\code{\link{tar_meta_upload}()}, -\code{\link{tar_meta}()} +\code{\link{tar_meta_upload}()} } \concept{metadata} diff --git a/man/tar_meta_upload.Rd b/man/tar_meta_upload.Rd index 3407117f..e5e60c80 100644 --- a/man/tar_meta_upload.Rd +++ b/man/tar_meta_upload.Rd @@ -72,9 +72,9 @@ tar_meta_upload() } \seealso{ Other metadata: +\code{\link{tar_meta}()}, \code{\link{tar_meta_delete}()}, \code{\link{tar_meta_download}()}, -\code{\link{tar_meta_sync}()}, -\code{\link{tar_meta}()} +\code{\link{tar_meta_sync}()} } \concept{metadata} diff --git a/man/tar_name.Rd b/man/tar_name.Rd index aca90f3a..44e41b09 100644 --- a/man/tar_name.Rd +++ b/man/tar_name.Rd @@ -40,11 +40,11 @@ Other utilities: \code{\link{tar_definition}()}, \code{\link{tar_envir}()}, \code{\link{tar_group}()}, -\code{\link{tar_path_script_support}()}, +\code{\link{tar_path}()}, \code{\link{tar_path_script}()}, +\code{\link{tar_path_script_support}()}, \code{\link{tar_path_store}()}, \code{\link{tar_path_target}()}, -\code{\link{tar_path}()}, \code{\link{tar_source}()}, \code{\link{tar_store}()} } diff --git a/man/tar_network.Rd b/man/tar_network.Rd index 65c04f0f..b9397061 100644 --- a/man/tar_network.Rd +++ b/man/tar_network.Rd @@ -174,8 +174,8 @@ tar_network(targets_only = TRUE) } \seealso{ Other inspect: -\code{\link{tar_deps_raw}()}, \code{\link{tar_deps}()}, +\code{\link{tar_deps_raw}()}, \code{\link{tar_manifest}()}, \code{\link{tar_outdated}()}, \code{\link{tar_sitrep}()}, diff --git a/man/tar_newer.Rd b/man/tar_newer.Rd index d4743a5a..a751d3fa 100644 --- a/man/tar_newer.Rd +++ b/man/tar_newer.Rd @@ -76,7 +76,7 @@ tar_make() \seealso{ Other time: \code{\link{tar_older}()}, -\code{\link{tar_timestamp_raw}()}, -\code{\link{tar_timestamp}()} +\code{\link{tar_timestamp}()}, +\code{\link{tar_timestamp_raw}()} } \concept{time} diff --git a/man/tar_objects.Rd b/man/tar_objects.Rd index 72fc72e3..ba80cbef 100644 --- a/man/tar_objects.Rd +++ b/man/tar_objects.Rd @@ -78,12 +78,12 @@ tar_objects(starts_with("x")) # see also any_of() \seealso{ Other data: \code{\link{tar_crew}()}, +\code{\link{tar_load}()}, \code{\link{tar_load_everything}()}, \code{\link{tar_load_raw}()}, -\code{\link{tar_load}()}, \code{\link{tar_pid}()}, \code{\link{tar_process}()}, -\code{\link{tar_read_raw}()}, -\code{\link{tar_read}()} +\code{\link{tar_read}()}, +\code{\link{tar_read_raw}()} } \concept{data} diff --git a/man/tar_older.Rd b/man/tar_older.Rd index 970b3bb3..fb27da84 100644 --- a/man/tar_older.Rd +++ b/man/tar_older.Rd @@ -78,7 +78,7 @@ tar_make() \seealso{ Other time: \code{\link{tar_newer}()}, -\code{\link{tar_timestamp_raw}()}, -\code{\link{tar_timestamp}()} +\code{\link{tar_timestamp}()}, +\code{\link{tar_timestamp_raw}()} } \concept{time} diff --git a/man/tar_outdated.Rd b/man/tar_outdated.Rd index d2af5658..83654365 100644 --- a/man/tar_outdated.Rd +++ b/man/tar_outdated.Rd @@ -169,8 +169,8 @@ tar_outdated() } \seealso{ Other inspect: -\code{\link{tar_deps_raw}()}, \code{\link{tar_deps}()}, +\code{\link{tar_deps_raw}()}, \code{\link{tar_manifest}()}, \code{\link{tar_network}()}, \code{\link{tar_sitrep}()}, diff --git a/man/tar_path.Rd b/man/tar_path.Rd index f2e142e8..6df3a6df 100644 --- a/man/tar_path.Rd +++ b/man/tar_path.Rd @@ -85,8 +85,8 @@ Other utilities: \code{\link{tar_envir}()}, \code{\link{tar_group}()}, \code{\link{tar_name}()}, -\code{\link{tar_path_script_support}()}, \code{\link{tar_path_script}()}, +\code{\link{tar_path_script_support}()}, \code{\link{tar_path_store}()}, \code{\link{tar_path_target}()}, \code{\link{tar_source}()}, diff --git a/man/tar_path_script.Rd b/man/tar_path_script.Rd index 411ece3e..dfc9af28 100644 --- a/man/tar_path_script.Rd +++ b/man/tar_path_script.Rd @@ -37,10 +37,10 @@ Other utilities: \code{\link{tar_envir}()}, \code{\link{tar_group}()}, \code{\link{tar_name}()}, +\code{\link{tar_path}()}, \code{\link{tar_path_script_support}()}, \code{\link{tar_path_store}()}, \code{\link{tar_path_target}()}, -\code{\link{tar_path}()}, \code{\link{tar_source}()}, \code{\link{tar_store}()} } diff --git a/man/tar_path_script_support.Rd b/man/tar_path_script_support.Rd index 6b2aa571..3cac56e7 100644 --- a/man/tar_path_script_support.Rd +++ b/man/tar_path_script_support.Rd @@ -52,10 +52,10 @@ Other utilities: \code{\link{tar_envir}()}, \code{\link{tar_group}()}, \code{\link{tar_name}()}, +\code{\link{tar_path}()}, \code{\link{tar_path_script}()}, \code{\link{tar_path_store}()}, \code{\link{tar_path_target}()}, -\code{\link{tar_path}()}, \code{\link{tar_source}()}, \code{\link{tar_store}()} } diff --git a/man/tar_path_store.Rd b/man/tar_path_store.Rd index d338ce6c..cfb33fda 100644 --- a/man/tar_path_store.Rd +++ b/man/tar_path_store.Rd @@ -37,10 +37,10 @@ Other utilities: \code{\link{tar_envir}()}, \code{\link{tar_group}()}, \code{\link{tar_name}()}, -\code{\link{tar_path_script_support}()}, +\code{\link{tar_path}()}, \code{\link{tar_path_script}()}, +\code{\link{tar_path_script_support}()}, \code{\link{tar_path_target}()}, -\code{\link{tar_path}()}, \code{\link{tar_source}()}, \code{\link{tar_store}()} } diff --git a/man/tar_path_target.Rd b/man/tar_path_target.Rd index ee0b9b6b..03cb8a80 100644 --- a/man/tar_path_target.Rd +++ b/man/tar_path_target.Rd @@ -84,10 +84,10 @@ Other utilities: \code{\link{tar_envir}()}, \code{\link{tar_group}()}, \code{\link{tar_name}()}, -\code{\link{tar_path_script_support}()}, +\code{\link{tar_path}()}, \code{\link{tar_path_script}()}, +\code{\link{tar_path_script_support}()}, \code{\link{tar_path_store}()}, -\code{\link{tar_path}()}, \code{\link{tar_source}()}, \code{\link{tar_store}()} } diff --git a/man/tar_pattern.Rd b/man/tar_pattern.Rd index da80c999..99350096 100644 --- a/man/tar_pattern.Rd +++ b/man/tar_pattern.Rd @@ -95,8 +95,8 @@ tar_pattern( \seealso{ Other branching: \code{\link{tar_branch_index}()}, -\code{\link{tar_branch_names_raw}()}, \code{\link{tar_branch_names}()}, +\code{\link{tar_branch_names_raw}()}, \code{\link{tar_branches}()} } \concept{branching} diff --git a/man/tar_pid.Rd b/man/tar_pid.Rd index caad58b0..281a1473 100644 --- a/man/tar_pid.Rd +++ b/man/tar_pid.Rd @@ -52,12 +52,12 @@ tar_pid() # Different from the current PID. \seealso{ Other data: \code{\link{tar_crew}()}, +\code{\link{tar_load}()}, \code{\link{tar_load_everything}()}, \code{\link{tar_load_raw}()}, -\code{\link{tar_load}()}, \code{\link{tar_objects}()}, \code{\link{tar_process}()}, -\code{\link{tar_read_raw}()}, -\code{\link{tar_read}()} +\code{\link{tar_read}()}, +\code{\link{tar_read_raw}()} } \concept{data} diff --git a/man/tar_poll.Rd b/man/tar_poll.Rd index e07eb1d3..de5deb19 100644 --- a/man/tar_poll.Rd +++ b/man/tar_poll.Rd @@ -56,12 +56,12 @@ Other progress: \code{\link{tar_completed}()}, \code{\link{tar_dispatched}()}, \code{\link{tar_errored}()}, +\code{\link{tar_progress}()}, \code{\link{tar_progress_branches}()}, \code{\link{tar_progress_summary}()}, -\code{\link{tar_progress}()}, \code{\link{tar_skipped}()}, +\code{\link{tar_watch}()}, \code{\link{tar_watch_server}()}, -\code{\link{tar_watch_ui}()}, -\code{\link{tar_watch}()} +\code{\link{tar_watch_ui}()} } \concept{progress} diff --git a/man/tar_process.Rd b/man/tar_process.Rd index 51268267..f7e8f82d 100644 --- a/man/tar_process.Rd +++ b/man/tar_process.Rd @@ -86,12 +86,12 @@ tar_process(pid) \seealso{ Other data: \code{\link{tar_crew}()}, +\code{\link{tar_load}()}, \code{\link{tar_load_everything}()}, \code{\link{tar_load_raw}()}, -\code{\link{tar_load}()}, \code{\link{tar_objects}()}, \code{\link{tar_pid}()}, -\code{\link{tar_read_raw}()}, -\code{\link{tar_read}()} +\code{\link{tar_read}()}, +\code{\link{tar_read_raw}()} } \concept{data} diff --git a/man/tar_progress.Rd b/man/tar_progress.Rd index 87dfb2e2..79e6e854 100644 --- a/man/tar_progress.Rd +++ b/man/tar_progress.Rd @@ -102,8 +102,8 @@ Other progress: \code{\link{tar_progress_branches}()}, \code{\link{tar_progress_summary}()}, \code{\link{tar_skipped}()}, +\code{\link{tar_watch}()}, \code{\link{tar_watch_server}()}, -\code{\link{tar_watch_ui}()}, -\code{\link{tar_watch}()} +\code{\link{tar_watch_ui}()} } \concept{progress} diff --git a/man/tar_progress_branches.Rd b/man/tar_progress_branches.Rd index 277fa3ac..8adbe087 100644 --- a/man/tar_progress_branches.Rd +++ b/man/tar_progress_branches.Rd @@ -67,11 +67,11 @@ Other progress: \code{\link{tar_dispatched}()}, \code{\link{tar_errored}()}, \code{\link{tar_poll}()}, -\code{\link{tar_progress_summary}()}, \code{\link{tar_progress}()}, +\code{\link{tar_progress_summary}()}, \code{\link{tar_skipped}()}, +\code{\link{tar_watch}()}, \code{\link{tar_watch_server}()}, -\code{\link{tar_watch_ui}()}, -\code{\link{tar_watch}()} +\code{\link{tar_watch_ui}()} } \concept{progress} diff --git a/man/tar_progress_summary.Rd b/man/tar_progress_summary.Rd index a630aeed..a78b3516 100644 --- a/man/tar_progress_summary.Rd +++ b/man/tar_progress_summary.Rd @@ -64,11 +64,11 @@ Other progress: \code{\link{tar_dispatched}()}, \code{\link{tar_errored}()}, \code{\link{tar_poll}()}, -\code{\link{tar_progress_branches}()}, \code{\link{tar_progress}()}, +\code{\link{tar_progress_branches}()}, \code{\link{tar_skipped}()}, +\code{\link{tar_watch}()}, \code{\link{tar_watch_server}()}, -\code{\link{tar_watch_ui}()}, -\code{\link{tar_watch}()} +\code{\link{tar_watch_ui}()} } \concept{progress} diff --git a/man/tar_read.Rd b/man/tar_read.Rd index 74c69ccd..0b3f7a9c 100644 --- a/man/tar_read.Rd +++ b/man/tar_read.Rd @@ -114,9 +114,9 @@ tar_read(x) \seealso{ Other data: \code{\link{tar_crew}()}, +\code{\link{tar_load}()}, \code{\link{tar_load_everything}()}, \code{\link{tar_load_raw}()}, -\code{\link{tar_load}()}, \code{\link{tar_objects}()}, \code{\link{tar_pid}()}, \code{\link{tar_process}()}, diff --git a/man/tar_read_raw.Rd b/man/tar_read_raw.Rd index 4d1f1cb2..895fc851 100644 --- a/man/tar_read_raw.Rd +++ b/man/tar_read_raw.Rd @@ -114,9 +114,9 @@ tar_read_raw("x") \seealso{ Other data: \code{\link{tar_crew}()}, +\code{\link{tar_load}()}, \code{\link{tar_load_everything}()}, \code{\link{tar_load_raw}()}, -\code{\link{tar_load}()}, \code{\link{tar_objects}()}, \code{\link{tar_pid}()}, \code{\link{tar_process}()}, diff --git a/man/tar_renv.Rd b/man/tar_renv.Rd index 3d434540..9b3f2a65 100644 --- a/man/tar_renv.Rd +++ b/man/tar_renv.Rd @@ -132,8 +132,8 @@ tar_option_reset() Other scripts: \code{\link{tar_edit}()}, \code{\link{tar_github_actions}()}, -\code{\link{tar_helper_raw}()}, \code{\link{tar_helper}()}, +\code{\link{tar_helper_raw}()}, \code{\link{tar_script}()} } \concept{scripts} diff --git a/man/tar_reprex.Rd b/man/tar_reprex.Rd index b72f8b60..c59f461c 100644 --- a/man/tar_reprex.Rd +++ b/man/tar_reprex.Rd @@ -48,7 +48,7 @@ tar_reprex( \seealso{ Other help: \code{\link{targets-package}}, -\code{\link{use_targets_rmd}()}, -\code{\link{use_targets}()} +\code{\link{use_targets}()}, +\code{\link{use_targets_rmd}()} } \concept{help} diff --git a/man/tar_resources_aws.Rd b/man/tar_resources_aws.Rd index 946a9a4d..1a52ce97 100644 --- a/man/tar_resources_aws.Rd +++ b/man/tar_resources_aws.Rd @@ -154,6 +154,7 @@ tar_target( } \seealso{ Other resources: +\code{\link{tar_resources}()}, \code{\link{tar_resources_clustermq}()}, \code{\link{tar_resources_crew}()}, \code{\link{tar_resources_feather}()}, @@ -163,7 +164,6 @@ Other resources: \code{\link{tar_resources_network}()}, \code{\link{tar_resources_parquet}()}, \code{\link{tar_resources_qs}()}, -\code{\link{tar_resources_url}()}, -\code{\link{tar_resources}()} +\code{\link{tar_resources_url}()} } \concept{resources} diff --git a/man/tar_resources_clustermq.Rd b/man/tar_resources_clustermq.Rd index 4817662c..50d86fa2 100644 --- a/man/tar_resources_clustermq.Rd +++ b/man/tar_resources_clustermq.Rd @@ -66,6 +66,7 @@ tar_target( } \seealso{ Other resources: +\code{\link{tar_resources}()}, \code{\link{tar_resources_aws}()}, \code{\link{tar_resources_crew}()}, \code{\link{tar_resources_feather}()}, @@ -75,7 +76,6 @@ Other resources: \code{\link{tar_resources_network}()}, \code{\link{tar_resources_parquet}()}, \code{\link{tar_resources_qs}()}, -\code{\link{tar_resources_url}()}, -\code{\link{tar_resources}()} +\code{\link{tar_resources_url}()} } \concept{resources} diff --git a/man/tar_resources_crew.Rd b/man/tar_resources_crew.Rd index 485297a7..33aeacd4 100644 --- a/man/tar_resources_crew.Rd +++ b/man/tar_resources_crew.Rd @@ -78,6 +78,7 @@ tar_target( } \seealso{ Other resources: +\code{\link{tar_resources}()}, \code{\link{tar_resources_aws}()}, \code{\link{tar_resources_clustermq}()}, \code{\link{tar_resources_feather}()}, @@ -87,7 +88,6 @@ Other resources: \code{\link{tar_resources_network}()}, \code{\link{tar_resources_parquet}()}, \code{\link{tar_resources_qs}()}, -\code{\link{tar_resources_url}()}, -\code{\link{tar_resources}()} +\code{\link{tar_resources_url}()} } \concept{resources} diff --git a/man/tar_resources_feather.Rd b/man/tar_resources_feather.Rd index 86fa7c43..5be62136 100644 --- a/man/tar_resources_feather.Rd +++ b/man/tar_resources_feather.Rd @@ -63,6 +63,7 @@ tar_target( } \seealso{ Other resources: +\code{\link{tar_resources}()}, \code{\link{tar_resources_aws}()}, \code{\link{tar_resources_clustermq}()}, \code{\link{tar_resources_crew}()}, @@ -72,7 +73,6 @@ Other resources: \code{\link{tar_resources_network}()}, \code{\link{tar_resources_parquet}()}, \code{\link{tar_resources_qs}()}, -\code{\link{tar_resources_url}()}, -\code{\link{tar_resources}()} +\code{\link{tar_resources_url}()} } \concept{resources} diff --git a/man/tar_resources_fst.Rd b/man/tar_resources_fst.Rd index c5d967b6..b93b405a 100644 --- a/man/tar_resources_fst.Rd +++ b/man/tar_resources_fst.Rd @@ -56,6 +56,7 @@ tar_target( } \seealso{ Other resources: +\code{\link{tar_resources}()}, \code{\link{tar_resources_aws}()}, \code{\link{tar_resources_clustermq}()}, \code{\link{tar_resources_crew}()}, @@ -65,7 +66,6 @@ Other resources: \code{\link{tar_resources_network}()}, \code{\link{tar_resources_parquet}()}, \code{\link{tar_resources_qs}()}, -\code{\link{tar_resources_url}()}, -\code{\link{tar_resources}()} +\code{\link{tar_resources_url}()} } \concept{resources} diff --git a/man/tar_resources_future.Rd b/man/tar_resources_future.Rd index 2410e6f7..699b0a56 100644 --- a/man/tar_resources_future.Rd +++ b/man/tar_resources_future.Rd @@ -72,6 +72,7 @@ tar_target( } \seealso{ Other resources: +\code{\link{tar_resources}()}, \code{\link{tar_resources_aws}()}, \code{\link{tar_resources_clustermq}()}, \code{\link{tar_resources_crew}()}, @@ -81,7 +82,6 @@ Other resources: \code{\link{tar_resources_network}()}, \code{\link{tar_resources_parquet}()}, \code{\link{tar_resources_qs}()}, -\code{\link{tar_resources_url}()}, -\code{\link{tar_resources}()} +\code{\link{tar_resources_url}()} } \concept{resources} diff --git a/man/tar_resources_gcp.Rd b/man/tar_resources_gcp.Rd index ad67a299..39574e34 100644 --- a/man/tar_resources_gcp.Rd +++ b/man/tar_resources_gcp.Rd @@ -90,6 +90,7 @@ tar_target( } \seealso{ Other resources: +\code{\link{tar_resources}()}, \code{\link{tar_resources_aws}()}, \code{\link{tar_resources_clustermq}()}, \code{\link{tar_resources_crew}()}, @@ -99,7 +100,6 @@ Other resources: \code{\link{tar_resources_network}()}, \code{\link{tar_resources_parquet}()}, \code{\link{tar_resources_qs}()}, -\code{\link{tar_resources_url}()}, -\code{\link{tar_resources}()} +\code{\link{tar_resources_url}()} } \concept{resources} diff --git a/man/tar_resources_network.Rd b/man/tar_resources_network.Rd index fad0926f..f9ef2c93 100644 --- a/man/tar_resources_network.Rd +++ b/man/tar_resources_network.Rd @@ -72,6 +72,7 @@ tar_target( } \seealso{ Other resources: +\code{\link{tar_resources}()}, \code{\link{tar_resources_aws}()}, \code{\link{tar_resources_clustermq}()}, \code{\link{tar_resources_crew}()}, @@ -81,7 +82,6 @@ Other resources: \code{\link{tar_resources_gcp}()}, \code{\link{tar_resources_parquet}()}, \code{\link{tar_resources_qs}()}, -\code{\link{tar_resources_url}()}, -\code{\link{tar_resources}()} +\code{\link{tar_resources_url}()} } \concept{resources} diff --git a/man/tar_resources_parquet.Rd b/man/tar_resources_parquet.Rd index 255d15cd..c3592fa6 100644 --- a/man/tar_resources_parquet.Rd +++ b/man/tar_resources_parquet.Rd @@ -62,6 +62,7 @@ tar_target( } \seealso{ Other resources: +\code{\link{tar_resources}()}, \code{\link{tar_resources_aws}()}, \code{\link{tar_resources_clustermq}()}, \code{\link{tar_resources_crew}()}, @@ -71,7 +72,6 @@ Other resources: \code{\link{tar_resources_gcp}()}, \code{\link{tar_resources_network}()}, \code{\link{tar_resources_qs}()}, -\code{\link{tar_resources_url}()}, -\code{\link{tar_resources}()} +\code{\link{tar_resources_url}()} } \concept{resources} diff --git a/man/tar_resources_qs.Rd b/man/tar_resources_qs.Rd index aa9d187d..5ddd6ba4 100644 --- a/man/tar_resources_qs.Rd +++ b/man/tar_resources_qs.Rd @@ -56,6 +56,7 @@ tar_target( } \seealso{ Other resources: +\code{\link{tar_resources}()}, \code{\link{tar_resources_aws}()}, \code{\link{tar_resources_clustermq}()}, \code{\link{tar_resources_crew}()}, @@ -65,7 +66,6 @@ Other resources: \code{\link{tar_resources_gcp}()}, \code{\link{tar_resources_network}()}, \code{\link{tar_resources_parquet}()}, -\code{\link{tar_resources_url}()}, -\code{\link{tar_resources}()} +\code{\link{tar_resources_url}()} } \concept{resources} diff --git a/man/tar_resources_url.Rd b/man/tar_resources_url.Rd index 0d9d83c8..b5055e70 100644 --- a/man/tar_resources_url.Rd +++ b/man/tar_resources_url.Rd @@ -75,6 +75,7 @@ tar_target( } \seealso{ Other resources: +\code{\link{tar_resources}()}, \code{\link{tar_resources_aws}()}, \code{\link{tar_resources_clustermq}()}, \code{\link{tar_resources_crew}()}, @@ -84,7 +85,6 @@ Other resources: \code{\link{tar_resources_gcp}()}, \code{\link{tar_resources_network}()}, \code{\link{tar_resources_parquet}()}, -\code{\link{tar_resources_qs}()}, -\code{\link{tar_resources}()} +\code{\link{tar_resources_qs}()} } \concept{resources} diff --git a/man/tar_script.Rd b/man/tar_script.Rd index 3a352a28..fd463598 100644 --- a/man/tar_script.Rd +++ b/man/tar_script.Rd @@ -89,8 +89,8 @@ writeLines(readLines("_targets.R")) Other scripts: \code{\link{tar_edit}()}, \code{\link{tar_github_actions}()}, -\code{\link{tar_helper_raw}()}, \code{\link{tar_helper}()}, +\code{\link{tar_helper_raw}()}, \code{\link{tar_renv}()} } \concept{scripts} diff --git a/man/tar_sitrep.Rd b/man/tar_sitrep.Rd index 1c4cdec4..0d3c7f54 100644 --- a/man/tar_sitrep.Rd +++ b/man/tar_sitrep.Rd @@ -175,8 +175,8 @@ tar_meta(starts_with("y_")) # see also any_of() } \seealso{ Other inspect: -\code{\link{tar_deps_raw}()}, \code{\link{tar_deps}()}, +\code{\link{tar_deps_raw}()}, \code{\link{tar_manifest}()}, \code{\link{tar_network}()}, \code{\link{tar_outdated}()}, diff --git a/man/tar_skipped.Rd b/man/tar_skipped.Rd index cf45ced1..45ab3647 100644 --- a/man/tar_skipped.Rd +++ b/man/tar_skipped.Rd @@ -49,11 +49,11 @@ Other progress: \code{\link{tar_dispatched}()}, \code{\link{tar_errored}()}, \code{\link{tar_poll}()}, +\code{\link{tar_progress}()}, \code{\link{tar_progress_branches}()}, \code{\link{tar_progress_summary}()}, -\code{\link{tar_progress}()}, +\code{\link{tar_watch}()}, \code{\link{tar_watch_server}()}, -\code{\link{tar_watch_ui}()}, -\code{\link{tar_watch}()} +\code{\link{tar_watch_ui}()} } \concept{progress} diff --git a/man/tar_source.Rd b/man/tar_source.Rd index 6397a7ac..dc39e1d7 100644 --- a/man/tar_source.Rd +++ b/man/tar_source.Rd @@ -88,11 +88,11 @@ Other utilities: \code{\link{tar_envir}()}, \code{\link{tar_group}()}, \code{\link{tar_name}()}, -\code{\link{tar_path_script_support}()}, +\code{\link{tar_path}()}, \code{\link{tar_path_script}()}, +\code{\link{tar_path_script_support}()}, \code{\link{tar_path_store}()}, \code{\link{tar_path_target}()}, -\code{\link{tar_path}()}, \code{\link{tar_store}()} } \concept{utilities} diff --git a/man/tar_store.Rd b/man/tar_store.Rd index 871c8d4c..c57b9159 100644 --- a/man/tar_store.Rd +++ b/man/tar_store.Rd @@ -41,11 +41,11 @@ Other utilities: \code{\link{tar_envir}()}, \code{\link{tar_group}()}, \code{\link{tar_name}()}, -\code{\link{tar_path_script_support}()}, +\code{\link{tar_path}()}, \code{\link{tar_path_script}()}, +\code{\link{tar_path_script_support}()}, \code{\link{tar_path_store}()}, \code{\link{tar_path_target}()}, -\code{\link{tar_path}()}, \code{\link{tar_source}()} } \concept{utilities} diff --git a/man/tar_traceback.Rd b/man/tar_traceback.Rd index fb4b11b3..f8793f18 100644 --- a/man/tar_traceback.Rd +++ b/man/tar_traceback.Rd @@ -67,7 +67,7 @@ tar_traceback(y, characters = 60) \seealso{ Other debug: \code{\link{tar_load_globals}()}, -\code{\link{tar_workspaces}()}, -\code{\link{tar_workspace}()} +\code{\link{tar_workspace}()}, +\code{\link{tar_workspaces}()} } \concept{debug} diff --git a/man/tar_unversion.Rd b/man/tar_unversion.Rd index 20e33e46..45479539 100644 --- a/man/tar_unversion.Rd +++ b/man/tar_unversion.Rd @@ -67,7 +67,7 @@ Other clean: \code{\link{tar_delete}()}, \code{\link{tar_destroy}()}, \code{\link{tar_invalidate}()}, -\code{\link{tar_prune_list}()}, -\code{\link{tar_prune}()} +\code{\link{tar_prune}()}, +\code{\link{tar_prune_list}()} } \concept{clean} diff --git a/man/tar_validate.Rd b/man/tar_validate.Rd index 600743ad..7acdeaa6 100644 --- a/man/tar_validate.Rd +++ b/man/tar_validate.Rd @@ -79,8 +79,8 @@ tar_validate() } \seealso{ Other inspect: -\code{\link{tar_deps_raw}()}, \code{\link{tar_deps}()}, +\code{\link{tar_deps_raw}()}, \code{\link{tar_manifest}()}, \code{\link{tar_network}()}, \code{\link{tar_outdated}()}, diff --git a/man/tar_watch.Rd b/man/tar_watch.Rd index 7a1d9140..60c3b39f 100644 --- a/man/tar_watch.Rd +++ b/man/tar_watch.Rd @@ -198,9 +198,9 @@ Other progress: \code{\link{tar_dispatched}()}, \code{\link{tar_errored}()}, \code{\link{tar_poll}()}, +\code{\link{tar_progress}()}, \code{\link{tar_progress_branches}()}, \code{\link{tar_progress_summary}()}, -\code{\link{tar_progress}()}, \code{\link{tar_skipped}()}, \code{\link{tar_watch_server}()}, \code{\link{tar_watch_ui}()} diff --git a/man/tar_watch_server.Rd b/man/tar_watch_server.Rd index ec9dbda6..22046c6f 100644 --- a/man/tar_watch_server.Rd +++ b/man/tar_watch_server.Rd @@ -64,11 +64,11 @@ Other progress: \code{\link{tar_dispatched}()}, \code{\link{tar_errored}()}, \code{\link{tar_poll}()}, +\code{\link{tar_progress}()}, \code{\link{tar_progress_branches}()}, \code{\link{tar_progress_summary}()}, -\code{\link{tar_progress}()}, \code{\link{tar_skipped}()}, -\code{\link{tar_watch_ui}()}, -\code{\link{tar_watch}()} +\code{\link{tar_watch}()}, +\code{\link{tar_watch_ui}()} } \concept{progress} diff --git a/man/tar_watch_ui.Rd b/man/tar_watch_ui.Rd index c869bf0d..9e3c20e1 100644 --- a/man/tar_watch_ui.Rd +++ b/man/tar_watch_ui.Rd @@ -93,11 +93,11 @@ Other progress: \code{\link{tar_dispatched}()}, \code{\link{tar_errored}()}, \code{\link{tar_poll}()}, +\code{\link{tar_progress}()}, \code{\link{tar_progress_branches}()}, \code{\link{tar_progress_summary}()}, -\code{\link{tar_progress}()}, \code{\link{tar_skipped}()}, -\code{\link{tar_watch_server}()}, -\code{\link{tar_watch}()} +\code{\link{tar_watch}()}, +\code{\link{tar_watch_server}()} } \concept{progress} diff --git a/man/targets-package.Rd b/man/targets-package.Rd index ce32fa6b..2bdf55f2 100644 --- a/man/targets-package.Rd +++ b/man/targets-package.Rd @@ -19,7 +19,7 @@ and \code{drake} (2018, \doi{doi:10.21105/joss.00550}). \seealso{ Other help: \code{\link{tar_reprex}()}, -\code{\link{use_targets_rmd}()}, -\code{\link{use_targets}()} +\code{\link{use_targets}()}, +\code{\link{use_targets_rmd}()} } \concept{help}