R/rhubv1.R

Defines functions platforms local_check_linux_images local_check_linux list_package_checks list_my_checks last_check list_validated_emails validate_email check check_with_sanitizers check_with_valgrind check_with_rdevel check_with_rpatched check_with_rrelease check_with_roldrel check_on_centos check_on_solaris check_on_fedora check_on_ubuntu check_on_debian check_on_macos check_on_windows check_on_linux check_for_cran get_check deprecated

Documented in check check_for_cran check_on_centos check_on_debian check_on_fedora check_on_linux check_on_macos check_on_solaris check_on_ubuntu check_on_windows check_with_rdevel check_with_roldrel check_with_rpatched check_with_rrelease check_with_sanitizers check_with_valgrind get_check last_check list_my_checks list_package_checks list_validated_emails local_check_linux local_check_linux_images platforms validate_email

# nocov start

deprecated <- function() {
  message(
    "This function is deprecated and defunct since rhub v2.\n",
    "Please see `?rhubv2` on transitioning to the new rhub functions."
  )
}

#' This function is deprecated and defunct. Please see [rhubv2].
#'
#' @param ... Deprecated.
#' @export

get_check <- function(...) {
  deprecated()
}

#' This function is deprecated and defunct. Please see [rhubv2].
#'
#' @param ... Deprecated.
#' @export

check_for_cran <- function(...) {
  deprecated()
}

#' This function is deprecated and defunct. Please see [rhubv2].
#'
#' @param ... Deprecated.
#' @export
#' @rdname check_shortcuts

check_on_linux <- function(...) {
  deprecated()
}

#' @export
#' @rdname check_shortcuts

check_on_windows <- function(...) {
  deprecated()
}

#' @export
#' @rdname check_shortcuts

check_on_macos <- function(...) {
  deprecated()
}

#' @export
#' @rdname check_shortcuts

check_on_debian <- function(...) {
  deprecated()
}

#' @export
#' @rdname check_shortcuts

check_on_ubuntu <- function(...) {
  deprecated()
}

#' @export
#' @rdname check_shortcuts

check_on_fedora <- function(...) {
  deprecated()
}

#' @export
#' @rdname check_shortcuts

check_on_solaris <- function(...) {
  deprecated()
}

#' @export
#' @rdname check_shortcuts

check_on_centos <- function(...) {
  deprecated()
}

#' @export
#' @rdname check_shortcuts

check_with_roldrel <- function(...) {
  deprecated()
}

#' @export
#' @rdname check_shortcuts

check_with_rrelease <- function(...) {
  deprecated()
}

#' @export
#' @rdname check_shortcuts

check_with_rpatched <- function(...) {
  deprecated()
}

#' @export
#' @rdname check_shortcuts

check_with_rdevel <- function(...) {
  deprecated()
}

#' @export
#' @rdname check_shortcuts

check_with_valgrind <- function(...) {
  deprecated()
}

#' @export
#' @rdname check_shortcuts

check_with_sanitizers <- function(...) {
  deprecated()
}

#' This function is deprecated and defunct. Please see [rhubv2].
#'
#' @param ... Deprecated.
#' @export

check <- function(...) {
  deprecated()
}

#' This function is deprecated and defunct. Please see [rhubv2].
#'
#' @param ... Deprecated.
#' @export

validate_email <- function(...) {
  deprecated()
}

#' This function is deprecated and defunct. Please see [rhubv2].
#'
#' @param ... Deprecated.
#' @export

list_validated_emails <- function(...) {
  deprecated()
}

#' This function is deprecated and defunct. Please see [rhubv2].
#'
#' @param ... Deprecated.
#' @export

last_check <- function(...) {
  deprecated()
}

#' This function is deprecated and defunct. Please see [rhubv2].
#'
#' @param ... Deprecated.
#' @export

list_my_checks <- function(...) {
  deprecated()
}

#' This function is deprecated and defunct. Please see [rhubv2].
#'
#' @param ... Deprecated.
#' @export

list_package_checks <- function(...) {
  deprecated()
}

#' This function is deprecated and defunct. Please see [rhubv2].
#'
#' @param ... Deprecated.
#' @export

local_check_linux <- function(...) {
  deprecated()
}

#' This function is deprecated and defunct. Please see [rhubv2].
#'
#' @param ... Deprecated.
#' @export

local_check_linux_images <- function(...) {
  deprecated()
}

#' This function is deprecated and defunct. Please see [rhubv2].
#'
#' @param ... Deprecated.
#' @export

platforms <- function(...) {
  deprecated()
}

# nocov end
r-hub/rhub documentation built on April 25, 2024, 9:23 a.m.