R/aaa.R

Defines functions .onLoad

# Items related to use of the options package.
options::define_options(
  "Show verbose messages.",
  vb = FALSE
)

#' @eval options::as_roxygen_docs()
NULL

.onLoad <- function(libname, pkgname) {
  op <- options()
  op.devtools <- list(
    devtools.name = "Rick Gilmore",
    devtools.desc.author = "Rick Gilmore <rog1@psu.edu> [aut, cre]",
    devtools.desc.license = "MIT",
    devtools.desc.suggests = NULL,
    devtools.desc = list()
  )
  toset <- !(names(op.devtools) %in% names(op))
  if(any(toset)) options(op.devtools[toset])

  invisible()
}

utils::globalVariables(".data")
PLAY-behaviorome/databraryapi documentation built on July 24, 2024, 12:30 p.m.